斯文马里奥

文章
3
资源
0
加入时间
2年10月21天

Java_基础_1.注释(comment)

注释(comment)/** * 用来测试注释的用法(文档注释) * @author creep creep creep * */public class A_comment { public static void main(String[] args) { //单行注释 /* * 多行注释(行内注释) */ }}...