62,623
社区成员
发帖
与我相关
我的任务
分享
public class Test{
static int intk(Integer k){
int s=k.intValue();
s++;
return s; }
public static void main(String[] args){
Integer k=new Integer(1);
k=Intk(k);
System.out.print(k);
}
}
public class Test{
static void Intk(Integer k){
k++;
}
public static void main(String[] args){
Integer k=new Integer(1);
Intk(k);
System.out.print(k);
}
}