这是程序主要入口。更具体的解释:public表示公开方法static表示静态方法void表示无返回值main是方法名args表示传入参数 string[]表示传入参数是一个字符串型的数组,可为空
public static void main(String[] args){}是Java里的吧?