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