This ?? public class SoloThis { private int i = 0; public SoloThis getMySelf() { //this 자체를 리턴, this의 형은 클래스의 형 return this; } public void print(){ this.i++; System.out.println("member i = " + this.i); } public static void main(String args[]) { SoloThis st1 = new SoloThis(); //객체생성 System.out.println("SoloThis st1:" + st1); st1.print(); st1.print(); SoloThis st2 = st1.getMySelf(); //객체 생성 System.out.pri.. 더보기 상속 class SuperFather { private String name; public SuperFather(String name) { this.name = name; System.out.println(name+"SuperFather의 생성자 호출"); } } public class SuperSon extends SuperFather { public SuperSon(String str) { super(str); System.out.println(str+"SuperSon의 생성자 호출"); } public static void main(String[] args) { SuperSon s = new SuperSon("홍길동"); } } 더보기 이전 1 ··· 13 14 15 16 17 18 19 ··· 40 다음