Java 주석은 컴파일러와 인터프리터에 의해 실행되지 않는 명령문입니다. 주석은 변수, 메서드, 클래스 또는 모든 명령문에 대한 정보를 제공하는 데 사용될 수 있습니다. 특정 시간에 프로그램 코드를 숨기는 데에도 사용할 수 있습니다.
Java의 주석은 세 가지 유형으로 나뉩니다.
한 줄 댓글은 //로 시작하고 줄 끝에서 끝납니다.
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
여러 줄 주석은 /*로 시작*/로 끝나며 여러 줄에 걸쳐 있습니다.
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
문서 스타일 주석은 /**&*/로 끝나며 여러 줄에 걸쳐 있습니다. 문서 주석은 클래스, 인터페이스, 메서드 또는 필드 정의 바로 앞에 있어야 합니다.
/** 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
위 내용은 Java 코드에 다양한 주석을 추가하는 방법은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!