如何在 Java 中编写单行注释?
要注释某行,只在行前加“双反斜杠 (//)”即可,如下所示。
// Hello this line is commented
示例
下面示例演示了如何在 Java 中使用单行注释。
public class CommentsExample { public static void main(String args[]) { //Declaring a variable named num int num = 1; //Printing the value of the variable num System.out.println("value if the variable num: "+num); } }
输出
value if the variable num: 1
广告