2011-05-20 32 views
3

我在上推送一个整数在BCEL的堆栈中遇到问题。 我有一个方法SomeClass的即 “mathClass” 的_square如何在BCEL中堆栈上推整数

ilist = new InstructionList(); 
    ilist.append(InstructionConstants.ALOAD_0); 
    ilist.append(new GETFIELD(findex)); 
    //I am trying to push some value using createLoad but it is not working 

    ilist.append(InstructionConstants.ALOAD_1); 
    ilist.append(ifact.createInvoke("mathClass", _square, Type.INT, 
     new Type[] { Type.INT }, Constants.INVOKEVIRTUAL)); 

感谢

回答

1

我使用

new InstructionList.append(new PUSH(constantPool,23)); 

推送方法使用推栈上的原始类型的数据。