[Java] 5. 주석과 세미콜론

psj98·2023년 1월 1일
0

생활코딩 JAVA

목록 보기
5/41
post-custom-banner

1. 주석

1. 주석

주석(comment)은 로직에 대한 설명이나 코드를 비활성화 할 때 사용한다. 주석은 프로그래밍적으로 해석되지 않는다.

2. 한 줄 주석

  • // 사용
public static void main(String[] args) {
    // 한 줄 주석 처리
    String a, b;
}

3. 여러 줄 주석

  • /**/ 사용
public static void main(String[] args) {
    String a, b;
    /*
      a = "coding";
      b = "everybody";
      System.out.println(a+b);
    */
}

2. 세미콜론

세미콜론은 문장(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;

3. 참고

생활코딩

profile
SSAFY 9기
post-custom-banner

0개의 댓글