選択できるのは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. }