Java中我将main方法放到了其他类中,程序依然能很好地运行,请问在这样的程序中主类起的作用是什么,与其他类还有什么区别?
code:
public class Test3 {
public void greetingworld(){
System.out.println("Hello World");
}
}
class Hello{
public static void main(String[]args){
Test3 a=new Test3();
a.greetingworld();
System.out.println("l");
}
}
幕布斯6054654
12345678_0001