단순 공장 모델 개선

공장 디자인 모델 은 자바 디자인 모델 에서 가장 보편적 인 것 으로 프로그램의 디 결합 작업 을 효과적으로 실현 했다.
다음은 간단 한 공장 설계 입 니 다.
interface Fruit{
	public void eat();
}
class Apple implements Fruit{

	@Override
	public void eat() {
		System.out.println("**         **");
	}
}
class Orange implements Fruit{
	@Override
	public void eat() {
		System.out.println("**       **");
	}
	
}
class Factory{
	public static Fruit getInstance(String className){
		if("apple".equals(className)){
			return new Apple();
		}
		if("orange".equals(className)){
			return new Orange();
		}
		return null;
	}
}
public class FactoryDemo {
	public static void main(String[] args) {
		Factory.getInstance("apple").eat();
	}
}

코드 를 분석 해 보면 그 중 에 문제 가 하나 있어 서 하위 클래스 를 확장 할 수 없다 는 것 을 알 수 있다.다음은 반사 체 제 를 통 해 개선 하고 클래스 이름과 인 스 턴 스 의 대응 관 계 를 속성 파일 에 저장 합 니 다. fruit. properties 는 정적 인 방법 으로 불 러 옵 니 다.
다음은 개 선 된 코드 입 니 다.
import java.io.File;
import java.io.FileInputStream;
import java.io.IOException;
import java.io.InputStream;
import java.util.Properties;

interface Fruit{
	public void eat();
}
class Apple implements Fruit{

	@Override
	public void eat() {
		System.out.println("**         **");
	}	
}
class Orange implements Fruit{
	@Override
	public void eat() {
		System.out.println("**       **");
	}
	
}
//      ,    ,    key = value     
class Init{
	public static Properties getProperties(){
		File file = new File("src//org//wzy//fruit.properties");
		Properties pro = null;
		if(file.exists()){
			pro = new Properties();
			try{
				InputStream in = new FileInputStream(file);
				pro.load(in);
				 
			}catch(Exception e){
				e.printStackTrace();
			}
		}else{
			try {
				file.createNewFile();
			} catch (IOException e) {
				// TODO Auto-generated catch block
				e.printStackTrace();
			}
		}
		return pro;
	}
}
class Factory{
	public static Fruit getInstance(String className){
		Fruit fruit = null;
		try {
			fruit = (Fruit) Class.forName(className).newInstance();
		} catch (InstantiationException e) {
			// TODO Auto-generated catch block
			e.printStackTrace();
		} catch (IllegalAccessException e) {
			// TODO Auto-generated catch block
			e.printStackTrace();
		} catch (ClassNotFoundException e) {
			// TODO Auto-generated catch block
			e.printStackTrace();
		}
		return fruit;
	}
}
public class FactoryDemo {
	public static void main(String[] args) {
		Properties pro = Init.getProperties();
		String className = (String) pro.get("apple");
		Factory.getInstance(className).eat();
	}
}

 
 
 

좋은 웹페이지 즐겨찾기