编写方法名时,应遵循驼峰命名法,即第一个单词的首字母应小写,其余单词的首字母应大写。例如 public class Test { public void sampleMethod() { System.out.println("This is sample method"); } public void demoMethod() { System.out.println("This is demo method"); } public static void main(String args[]) { Test obj = new Test(); obj.sample(); obj.demo(); } } 输出 This is sample method This is demo method
关键字Java 中的关键字对编译器具有特殊含义,因此不能用作标识符。Java 提供了一组 50 个关键字。abstract continue for new switch assert default goto package synchronized boolean do if private this break double implements protected throw byte else import public throws case enum instanceof return transient catch extends int short try char final long strictfp volatile const float native super while 保留字在上面提到的关键字列表中,关键字 goto 和 const 目前未使用。它们是保留字(供将来使用)。
Java 中有效的标识符 – 必须以字母(A 到 Z 或 a 到 z)、货币字符 ($) 或下划线 (_) 开头。第一个字符之后可以是任何字符组合。不能是关键字。示例以下示例显示了在 Java 中声明变量时使用的各种可能的标识符。实时演示 public class VariableTest { public static void main(String args[]) { // 声明名为 num 的变量 int num = 1; ... 阅读更多