Java反射机制 -工厂设计模式

 掌握反射对工厂设计模式的改进

掌握程序中代码与配置分离的设计理论

工厂设计模式最在的好处是可以在应用进行解耦合操作。

package org.lxh.demo15.factorydemo01 ;
interface Fruit{
	public void eat() ;	// 吃水果
}
class Apple implements Fruit{
	public void eat(){			// 覆写eat()方法
		System.out.println("** 吃苹果");
	}
};
class Orange implements Fruit{
	public void eat(){
		System.out.println("** 吃橘子") ;
	}
};
class Factory{
	public static Fruit getInstance(String className){
		Fruit fruit = null ;
		if("apple".equals(className)){
			fruit = new Apple() ;
		}
		if("orange".equals(className)){		
	                fruit = new Orange() ;



}
return fruit ;}};public class FactoryDemo01{public static void main(String args[]){Fruit f = Factory.getInstance("apple") ;if(f!=null){f.eat() ;}}};

以上是一个最简单的工厂设计模式,但是这样的操作代码肯定存在问题。

如果现在扩充了一个子类,则肯定要修改工厂类。如果此时希望在扩充子类时不用修改工厂类的话,则就必须使用反射完成。

package org.lxh.demo15.factorydemo01 ;
interface Fruit{
	public void eat() ;	// 吃水果
}
class Apple implements Fruit{
	public void eat(){			// 覆写eat()方法
		System.out.println("** 吃苹果");
	}
};
class Orange implements Fruit{
	public void eat(){
		System.out.println("** 吃橘子") ;
	}
};
class Factory{
	public static Fruit getInstance(String className){
		Fruit fruit = null ;
		try{
			fruit = (Fruit)Class.forName(className).newInstance() ;
		}catch(Exception e){
			e.printStackTrace() ;
		}
		return fruit ;
	}
};
public class FactoryDemo01{
	public static void main(String args[]){
		Fruit f = Factory.getInstance("org.lxh.demo15.factorydemo01.Apple") ;
		if(f!=null){
			f.eat() ;
		}
	}
};
以上确实在扩充子类的时候可以不用去修改工厂类,但是以上的程序代码中依然会存在问题,毕竟在使用的时候如果输入了完整的“包.类” 名称的话,肯定很麻烦,所以,此时,可以通过一些配置文件的方式保存这些完整的类路径。

fruit.properties:

apple = org.lxh.demo15.factorydemo02.Apple

orange = org.lxh.demo15.factorydemo02.Orange

程序运行的时候,就可以将属性文件的内容读取出来,之后直接操作属性文件中的 key ,就可以避免输入过长的类路径。

package org.lxh.demo15.factorydemo02 ;
import java.util.Properties ;
import java.io.File ;
import java.io.FileOutputStream ;
import java.io.FileInputStream ;
interface Fruit{
	public void eat() ;	// 吃水果
}
class Apple implements Fruit{
	public void eat(){			// 覆写eat()方法
		System.out.println("** 吃苹果");
	}
};
class Orange implements Fruit{
	public void eat(){
		System.out.println("** 吃橘子") ;
	}
};
class Init{
	public static Properties getPro(){
		Properties pro = new Properties() ;
		File f = new File("d:\\fruit.properties") ;	// 找到属性文件
		try{
			if(f.exists()){	// 文件存在
				pro.load(new FileInputStream(f)) ;	// 读取属性
			}else{
				pro.setProperty("apple","org.lxh.demo15.factorydemo02.Apple") ;
				pro.setProperty("orange","org.lxh.demo15.factorydemo02.Orange") ;
				pro.store(new FileOutputStream(f),"FRUIT CLASS") ;
			}
		}catch(Exception e){}
		return pro ;
	}
};
class Factory{
	public static Fruit getInstance(String className){
		Fruit fruit = null ;
		try{
			fruit = (Fruit)Class.forName(className).newInstance() ;
		}catch(Exception e){
			e.printStackTrace() ;
		}
		return fruit ;
	}
};
public class FactoryDemo02{
	public static void main(String args[]){
		Properties pro = Init.getPro() ;
		Fruit f = Factory.getInstance(pro.getProperty("apple")) ;
		if(f!=null){
			f.eat() ;
		}
	}
};
以上的程序达到了配置文件与程序代码相分离的目的,那么这种设计思路是以后开发的基本思路,当然,最新的设计理念:是在程序中直接通过注释的方式进行配置。

总结:

1、反射机制对程序开发所带来的好处

2、程序代码与配置文件相分离的理论



评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值