- 类名规范:首字母大写,后面每个首字母大写(大驼峰) HelloWorld
- 变量名规范:首字母小写,后面每个单词首字母大写(小驼峰)helloWorld
- 方法名规范:同变量名 helloWorld
public class HelloWorld { // 类名 HelloWorld
public static void main(String[] args) {
int numOne=5; // 变量名 numOne
System.out.println(numOne);
methodOne();
}
public static void methodOne(){ // 方法名 methodOne
int numTwo=10;
System.out.println(numTwo);
}
}