对象堆栈的问题
import java.util.*;
class Excytu { public static void main(String args[]) { Stack mystack=new Stack();//对象堆栈的问题 mystack.push(new Integer(1)); mystack.push(new Integer(1)); int k=1; while(k<=10) for(int i=1;i<=2;i++) { Integer F1=(Integer)mystack.pop(); int f1=F1.intValue(); Integer F2=(Integer)mystack.pop(); int f2=F2.intValue();//这个值为什么是2呢? Integer temp=new Integer(f1+f2); System.out.println(""+temp.toString()); mystack.push(temp); mystack.push(F2); /*System.out.println(F1); System.out.println(f1); System.out.println(F2); System.out.println(f2);*/
k++; } } }