>Java >java지도 시간 >Java 코드에 다양한 주석을 추가하는 방법은 무엇입니까?

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

王林
王林앞으로
2023-09-04 16:21:061452검색

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

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");
       }
    }

    Output

    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");
       }
    }

    Output

    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");
       }
    }

    Output

    Welcome to Tutorials Point

    위 내용은 Java 코드에 다양한 주석을 추가하는 방법은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

    성명:
    이 기사는 tutorialspoint.com에서 복제됩니다. 침해가 있는 경우 admin@php.cn으로 문의하시기 바랍니다. 삭제