码迷,mamicode.com
首页 > 编程语言 > 详细

Java语言有哪些注释的方式?

时间:2019-11-12 09:24:21      阅读:106      评论:0      收藏:0      [点我收藏+]

标签: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);
		*/
	}

}



技术图片

 

所有资源资源汇总于公众号

技术图片

 

 

Java语言有哪些注释的方式?

标签:code   tco   java语言   参数   article   interview   alt   auth   汇总   

原文地址:https://www.cnblogs.com/ConstXiong/p/11839542.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!