구조 기와 공장 방법의 차이
우선 아래 두 가지 생 성 대상 에서 의 차 이 를 살 펴 보 자.
// instantiating a class using constructor
Dog dog = new Dog();
// instantiating the class using static method
Class Dog{
private Dog(){
}
// factory method to instantiate the class
public static Dog getInstance(){
return new Dog();
}
}
다음은 정적 공장 방법의 장단 점 을 이야기 합 니 다.
장점:
1.정적 공장 방법 은 이름 이 있 지만 구조 함 수 는 없다
공장 방법 은 여러 가지 가 있 기 때문에 이름 을 통 해 각 방법 을 구별 할 수 있 지만 구조 함수 이름 은 한 가지 만 있 을 수 있 고 매개 변수 로 만 구별 할 수 있 기 때문에 정적 공장 방법 을 사용 하 는 것 이 더욱 명확 하 다.
2.정적 공장 방법 은 조건 성 정례 화 를 지원 합 니 다.
대상 을 만 들 때 만 들 지 여 부 를 판단 하 는 조건 을 추가 해 야 할 때 가 있 습 니 다.조건 을 만족 시 키 면 인 스 턴 스 를 되 돌려 주 고 만족 하지 않 으 면 NULL 을 되 돌려 줍 니 다.예 를 들 어 단일 모드 등 입 니 다.함 수 를 만 들 때 이런 것 을 할 수 없고 정적 공장 방법 은 쉽게 할 수 있다.
3.방법 은 반환 형식의 하위 형식 을 되 돌려 줍 니 다.
Suppose there is a class Animal and it has subclass Dog. We have static method with signature
public static Animal getInstance(){
}
then method can return Both objects of type Animal and Dog which provides great flexibility.
단점:
1.If constructor of the class is not public or protected then the class cannot be sub classed
만약 에 하나의 유형 이 정태 적 인 공장 방법 으로 만 인 스 턴 스 를 얻 을 수 있다 면 이런 구조 함 수 는 공유 되 거나 보 호 받 을 수 없다.그러면 이런 유형 은 하위 클래스 가 없 을 것 이다.즉,이런 유형 은 계승 되 지 못 할 것 이다.단일 모드 에 서 는 우선 민영화 구조 기 가 필요 하 다.
2.정적 공장 방법 과 다른 정적 방법 은 이름 으로 구분 할 수 없다
다음은 정적 공장 방법 에서 자주 사용 하 는 이름 이다.
• valueOf —Returns an instance that has, loosely speaking, the same value as its parameters. Such static factories are effectively type-conversion methods.
• of —A concise alternative to valueOf , popularized by EnumSet
• getInstance —Returns an instance that is described by the parameters but cannot be said to have the same value. In the case of a singleton, getInstance takes no parameters and returns the sole instance.
• newInstance —Like getInstance , except that newInstance guarantees that each instance returned is distinct from all others.
• getType—Like getInstance , but used when the factory method is in a different class. Type indicates the type of object returned by the factory method.
• newType—Like newInstance , but used when the factory method is in a different class. Type indicates the type of object returned by the factory method.
2014-11-09 14:39:17
Brave,Happy,Thanksgiving !
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
다양한 언어의 JSONJSON은 Javascript 표기법을 사용하여 데이터 구조를 레이아웃하는 데이터 형식입니다. 그러나 Javascript가 코드에서 이러한 구조를 나타낼 수 있는 유일한 언어는 아닙니다. 저는 일반적으로 '객체'{}...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.