编写方法名时,应遵循驼峰命名法,即第一个单词的首字母应小写,其余单词的首字母应大写。示例 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; ... 阅读更多
多行注释 (/* */) 用于注释源代码中的多行。示例 实时演示 public class CommentsExample { /* 下面是这里的主要方法,我们创建一个名为 num 的变量。并打印其值 * */ public static void main(String args[]) { // 声明名为 num 的变量 int num = 1; ... 阅读更多
要注释特定行,只需在该行之前放置“双反斜杠 (//)”即可,如下所示。 // Hello this line is commented 示例 下面的示例演示了在 Java 中使用单行注释。实时演示 public class CommentsExample { public static void main(String args[]) { // 声明名为 num 的变量 int num = 1; // 打印变量 num 的值 System.out.println("value if the variable num: "+num); } } 输出 value if the variable num: 1
java.lang 包是 Java 中的默认包,默认情况下会导入它。因此,无需显式导入此包。即,无需导入即可访问此包的类。示例 如果您观察下面的示例,我们没有显式导入 lang 包,但我们仍然能够使用 java.lang.Math 类的 sqrt() 方法计算数字的平方根。实时演示 public class LangTest { public static void main(String args[]) { int num = 100; ... 阅读更多