주석(comment)은 로직에 대한 설명이나 코드를 비활성화 할 때 사용한다. 주석은 프로그래밍적으로 해석되지 않는다.
public class Main {
public static void main(String[] args) {
// 두개의 변수가 같은 데이터 타입 일 때 아래와 같이 코드를 작성한다.
string a, b;
}
}
public class Main {
public static void main(String[] args) {
string a, b;
/*
a = "cat is";
b = "so cute";
System.out.println(a+b);
*/
}
}