반응형 constructor1 [Java][용어 정리] 생성자, 키워드, Object 모든 생성자의 앞에는 this() 또는 super()가 있어야 한다. 선언하지 않았다면 디폴트로 내부에서 this()가 붙는다. this 키워드 / this() 메소드 this.(변수명) //(=키워드) 생성자에서 여러변수 초기화 this(); //생성자 호출 this(); 메소드를 사용하여 중복성제거 class A{ int a, b, c, d; A(){ a=1; b=2; c=3; d=4; } A(int aa){ this(); a = aa; } A(int aaa, int bbb){ this(a); b = bbb; } } super 키워드 / super() 메소드 super.(변수명) //(=키워드) 부모 클래스 내에 있는 메소드 호출 super(); //부모생성자 호출 class A{ void abc.. 2023. 6. 21. 이전 1 다음 반응형