[달 리 는 풋내기]자바 의 상속 관계.

대상 을 대상 으로 하 는 프로 그래 밍 에 있어 가장 중요 한 세 가지 특징 은 바로 계승,포장,다 형 이다.이제 상속 이 어떻게 한 걸음 한 걸음 이 루어 지 는 지 살 펴 보 자.다음 코드 보기:
public class Test
{
	public static void main(String[] args)
	{
		FuncationOfThis m_this = new FuncationOfThis();
		System.out.println("*******************************************");
		Child m_child = new Child();
		System.out.println("*******************************************");
		Child m_childargs = new Child(1);
	}
}

class FuncationOfThis
{
	FuncationOfThis()
	{
		this(1);
		System.out.println("with_this");
	}
	FuncationOfThis(int i)
	{
		System.out.println("without_this");
	}
	
}



class Parent
{
	Parent()
	{
		System.out.println("parent");
	}
	
	Parent(int i)
	{
		System.out.println("argsParent"+i);
	}
}

class Child extends Parent
{
	Child()
	{
		System.out.println("child");
	}
	
	Child(int a)
	{
		super(a);
		System.out.println("argsChild"+a);
	}
	
}



실행 결 과 는 다음 과 같 습 니 다.
without_this
with_this
*******************************************
parent
child
*******************************************
argsParent1
argsChild1

먼저 this()의 용법 이 고 this()는 이 종류의 파 라 메 터 를 호출 하 는 구조 함수 입 니 다.슈퍼()는 부모 클래스 의 파 라 메 터 를 호출 하 는 구조 함수 입 니 다.this()와 슈퍼()는 구조 함수 에서 사용 할 때 구조 함수 의 첫 줄 에 나타 나 야 합 니 다.구조 함수 호출 순서 에 대해 new 의 새로운 대상 은 구조 함수 호출 입 니 다.new 의 대상 에 부모 클래스 가 있다 면 먼저 부모 클래스 의 구조 함 수 를 호출 한 다음 에 하위 클래스 의 구조 함 수 를 호출 합 니 다.
this()는 자신의 클래스 에 대한 인용 을 나타 내 고 슈퍼()는 부모 클래스 에 대한 인용 을 나타 낸다.슈퍼()는 구조 함 수 를 인용 할 때 첫 줄 에 두 어야 합 니 다.비 구조 함 수 를 인용 하 는 것 은 요구 하지 않 습 니 다.

좋은 웹페이지 즐겨찾기