public class test1 {
int a=5;
public static void main(String args[]){
test1 abc= new test1();
System.out.println(abc.a);
System.out.println(abc);
}
test1(){
double b=10;
System.out.println(b);
}
}
这个程序可以运行,但对于那个方法名test1()表示不理解,为什么必须要和类得名称一致才能编译?换其他的名字为何不成? |
|