标签:code tco java语言 参数 article interview alt auth 汇总
单行注释,形式:"//"
多行注释,不允许嵌套,形式:"/*...*/"
文档注释,常用于类和方法的注释,形式:"/**...*/"
package constxiong.interview;
/**
* 文档注释
* @author ConstXiong
* @date 2019-10-17 12:32:31
*/
public class TestComments {
/**
* 文档注释
* @param args 参数
*/
public static void main(String[] args) {
//单行注释
//System.out.print(1);
/* 多行注释
System.out.print(2);
System.out.print(3);
*/
}
}
标签:code tco java语言 参数 article interview alt auth 汇总
原文地址:https://www.cnblogs.com/ConstXiong/p/11839542.html