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