java认证考试编程题(9)
来源 :中华考试网 2016-10-04
中public class Jtest{
int m=1;
int i=3;
void Jtest(){
m=2;
i=4;
}
public static void main(String[] args) {
Jtest app=new Jtest();
System.out.println(app.m+","+app.i);
}
}
写出输出.
答案:结果是1,3;
因为在这里void Jtest();并没有并调用,它只是一个
方法,而非构造方法,这样的编写是有警告的,不过
可以运行.