您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

CommentSyntax.java 270B

12345678910111213141516171819
  1. /** this is a comment */
  2. /* So is this */
  3. // so is this, and so is the form below
  4. /**/
  5. public class CommentSyntax {
  6. public static void main(String[] args) {
  7. /** this is a comment */
  8. /* So is this */
  9. // so is this, and so is the form below
  10. /**/
  11. }
  12. }