当前位置:网站首页>1.1-注释
1.1-注释
2022-07-28 16:35:00 【night_du】
单行注释
// System.out.println("HelloWorld!");
多行注释
/* public static void HelloWorldTest() { HelloWorldTest.printTest(); }*/
文档注释
/** * * @param args */
public static void main(String[] args) {
System.out.println("HelloWorld!");
}
- 获取两个整数中最⼤的那个
- @author 标明开发该类模块的作者,可以写多个,⽣成的⽂档中会以","号隔开
- @version 标明该类模块的版本 只能写⼀次
- @see 参考转向,也就是相关主题
- @param 对⽅法中某参数的说明
- @return 对⽅法返回值的说明
- @exception 对⽅法可能抛出的异常进⾏说明
边栏推荐
- Jerry ac692x --- matrix keyboard addition
- ROS system installation
- easyui tree
- 如何安装ps的滤镜插件
- 怎样将IDEA与码云进行绑定
- QT编写串口助手
- Strsplit() function
- .net MVC understanding
- Precautions for $ionicpopup in ionic when calling alert for two consecutive times
- [advanced C language] - analyze the storage of micro data in memory [i]
猜你喜欢
随机推荐
软件测试行业真的饱和了吗?
mmdetection3d(2)---结果、log可视化
Database performance analysis and optimization (internal training materials of Aite future team)
怎样将IDEA与码云进行绑定
Convert the image file of input type='file'to Base64
【C语言进阶】——函数指针
Openpcd安装过程记录
【 R语言—基础绘图】
编译原理学习笔记1(编译原理概述与词法分析)
PCA reports error in eigen (crossprod (t (x), t (x)), symmetric = true): 'x' has infinite value or missing value
【Unity Tilemap】教程 | Basic、Rule Tile、Prefab Brush、Tilemap Collider
【C语言笔记分享】——动态内存管理malloc、free、calloc、realloc、柔性数组
.net动态调用webservice的三种方式
Interviewer: the actual record of algorithm question brushing.pdf I can't even answer it
软件测试前景如何?该如何进行学习呢?
新手通过自学转行软件测试难度大吗?
Kali installation configuration of penetration test killer
[advanced C language] - analyze the storage of micro data in memory [2] (floating point storage)
USB virtual serial port (CDC) limit speed test
Multithreading (ThreadPoolExecutor of thread pool)









