Computer >> 컴퓨터 >  >> 프로그램 작성 >> Java

Java 코드에 다른 주석을 추가하는 방법은 무엇입니까?


Java 주석은 컴파일러와 인터프리터에 의해 실행되지 않는 명령문입니다. 주석을 사용하여 변수, 메서드, 클래스 또는 모든 명령문에 대한 정보를 제공할 수 있습니다. 특정 시간 동안 프로그램 코드를 숨길 때도 사용할 수 있습니다.

자바 주석 유형

자바에는 세 가지 유형의 주석이 있습니다.

  • 한 줄 주석
  • 여러 줄 주석
  • 문서 설명

한 줄 주석

한 줄 주석은 //로 시작하여 줄 끝에서 끝납니다.

예시 1

public class SingleLineComment {
   public static void main(String[] args) {
      // To print output in the console
      System.out.println("Welcome to Tutorials Point");
   }
}

출력

Welcome to Tutorials Point

여러 줄 주석

여러 줄 주석은 /*로 시작하고 여러 줄에 걸쳐 있는 */로 끝납니다.

예시 2

public class MultiLineComment {
   public static void main(String[] args) {
      /* To print the output as Welcome to Tutorials Point
         in the console.
      */
      System.out.println("Welcome to Tutorials Point");
   }
}

출력

Welcome to Tutorials Point

문서 설명

문서 스타일 주석은 /**로 시작하고 */로 끝나며 여러 줄에 걸쳐 있습니다. 문서 주석은 클래스나 인터페이스, 메서드 또는 필드 정의 바로 앞에 와야 합니다.

예시 3

/**
   This is a documentation comment.
   This class is written to show the use of documentation comment in Java.
   This program displays the text "Welcome to Tutorials Point" in the console.
*/
public class DocumentationComment {
   public static void main(String args[]) {
      System.out.println("Welcome to Tutorials Point");
   }
}

출력

Welcome to Tutorials Point