객체지향정리1 (JAVA)자바 객체지향 언어 개념 중요 부분 총정리 part3 자바 객체지향 언어 개념 중요 부분 총정리 part3 1. this() vs super() this() 는 같은 클래스의 다른 생성자를 호출하는데 사용. super() 는 조상의 생성자를 호출하는데 사용. public class Text { public static void main(String[] args) { Grade2 g = new Grade2(1,2,3); System.out.println("x=" + g.x + ",y=" + g.y + ",z=" + g.z); } } class Grade{ int x,y; Grade(int x, int y){ this.x=x; this.y=y; } } class Grade2 extends Grade{ int z; Grade2(int x, int y, int z.. 2021. 4. 28. 이전 1 다음