*주석(comment)은 로직에 대한 설명이나 코드를 비활성화할 때 사용한다. [주석은 프로그래밍적으로 해석 안됨]
한줄 주석
public static void main(String[] args) {
// 두개의 변수가 같은 데이터 타입 일 때 아래와 같이 코드를 작성한다.
String a, b;
}
여러줄 주석
public static void main(String[] args) {
String a, b;
/*
a = "coding";
b = "everybody";
System.out.println(a+b);
*/
}
Java Doc 주석(문서를 만들때 사용)
/**
* Prints an integer and then terminate the line. This method behaves as
* though it invokes <code>{@link #print(int)}</code> and then
* <code>{@link #println()}</code>.
*
* @param x The <code>int</code> to be printed.
*/
public void println(int x) {
synchronized (this) {
print(x);
newLine();
}
}
- 이렇게 코드를 작성하면 자바에 어떤 소프트웨어가 동작하면서 여기 있는 것을 해석 어떤한 코드에 대한 문서를 만들어준다.
*세미콜론(;) : 문장(statement)의 끝을 의미, 자바에서는 문장의 끝에 세미콜론을 사용하지 않으면 컴파일 에러가 발생
// assignment statement
aValue = 8933.234;
// increment statement
aValue++;
// method invocation statement
System.out.println("Hello World!");
// object creation statement
Bicycle myBike = new Bicycle();
세미콜론을 이용하면 여러개의 문장을 한줄에 표현할 수 있다.
int a = 100; double b = 10.1;
'PL(ProgrammingLanguage) > JAVA' 카테고리의 다른 글
데이터 타입의 종류 - 정수 (0) | 2021.02.18 |
---|---|
데이터의 크기 (0) | 2021.02.18 |
Compile & Run (0) | 2021.02.18 |
직접 컴파일하고 실행하기: 실행환경 살펴보기 (0) | 2021.02.17 |
Compile (0) | 2021.02.17 |