모든 객체에 동일한 값을 주어야 할 때는 선언 시 초기화가 간편하지만, 외부 입력에 따라 다르게 초기화할 필요가 있는 경우 생성자를 사용하여 초기화하는 것이 더 유연하고 객체지향적으로 좋다.
class Variable {
// 인스턴스 멤버 필드 - 자동 초기화
String instanceVariable; // null
int instanceVariable2; // 0
char instanceVariable3; // '\u0000'
void doFunc() {
// 지역 변수 - 반드시 초기화해야 사용 가능
String localVariable;
// System.out.println(localVariable); // 초기화하지 않으면 에러 발생
}
}
public class VariableMainEx03 {
public static void main(String[] args) {
Variable v = new Variable();
// 초기화 없이 멤버 필드 확인 (자동 초기화)
System.out.println("instanceVariable = " + v.instanceVariable); // null
System.out.println("instanceVariable2 = " + v.instanceVariable2); // 0
System.out.println("instanceVariable3 = " + v.instanceVariable3); // '\u0000'
v.doFunc();
}
}
자료형 | 초기화 값 |
---|---|
byte | 0 |
short | 0 |
int | 0 |
long | 0L |
float | 0.0f |
double | 0.0d |
char | '\u0000' |
boolean | false |
참조형 | null |
📌
인스턴스 멤버 필드는 자동으로 초기화되지만,
지역 변수는 반드시 초기화해야 사용할 수 있다.