push() and pop() add or remove an item from the right hand side of an array. push(@mystack,$newvalue); # add new value to stack $off_value = pop(@mystack); ...
確定! 回上一頁