Java函数调用中,如何进行传值~
1 回答
梵蒂冈之花
TA贡献1900条经验 获得超5个赞
eg.
public class Test{
public void function(int a){}
public static void main(String []args){
Test test=new Test();
int a=1;
test. function(a);
}
}
添加回答
举报
0/150
提交
取消