자바 부모 클래스

더 읽 기
 
계승 관계 에서 부모 클래스 든 하위 클래스 든 이러한 클래스 의 this 는 최종 new 에서 나 온 인 스 턴 스 대상 을 대표 하기 때문에 부모 클래스 에서 this 로 하위 클래스 의 정 보 를 얻 을 수 있 습 니 다!
 
package com.urthinker.module.test;

import org.junit.Test;

abstract class BaseDao {
	public void getType() {
		System.out.println(this.getClass().getName()); //com.**.test.SubDao
	}
}

public class SubDao extends BaseDao {
	@Test
	public void test1() {
		getType();
	}
}

 
참고:
http://zhidao.baidu.com/link?url=9t24VdT4G63Z7-p6kNHR_WiBFRxRVYMYdmOmREJ_0F-cSDxPsrq0fgyJsq6Bv3uSpsOTH1QPH1YLV5S5cXJhRoRg8KIBHohw2F3DfcA6TK7
 
자바 에서 부모 클래스 참조 가 하위 클래스 대상 을 가리 킬 때
http://blog.csdn.net/liu_zhen_wei/article/details/6889810

좋은 웹페이지 즐겨찾기