Think in patten of Java中的一道习题

王朝java/jsp·作者佚名  2006-01-09
窄屏简体版  字體: |||超大  

这个问题我曾在论坛上发过,但没有解答。放在这里,给大家看看:

Think in partten of Java 中,关于Dynamic Proxies,有这么一道习题:

Exercise: Use the Java dynamic proxy to create an object that acts as a front end for a simple configuration file. For example, in good_stuff.txt you can have entries like this:

a=1

b=2

c="Hello World"

A client programmer of this NeatPropertyBundle could then write:

NeatPropertyBundle p =

new NeatPropertyBundle("good_stuff");

System.out.println(p.a);

System.out.println(p.b);

System.out.println(p.c);

The contents of the configuration file can contain anything, with any variable names. The dynamic proxy will either map to the name or tell you it doesn’t exist somehow (probably by returning null). If you set a property and it doesn’t already exist, the dynamic proxy will create the new entry. The toString( ) method should display all the current entries.

我原本想这么实现:

import java.lang.reflect.*;

import java.io.*;

class NeatPropertyBundle extends Proxy{

NeatPropertyBundle(final String textFileName){

super(new InvocationHandler(){

public Object invoke(Object proxy, Method method, Object[] args){

BufferedReader br=new BufferedReader(new FileReader(textFileName));

....../*这里通过method.getName获取要读的字段名,然后到配置文件里读取等等。*/

}

});

}

}

但我发现题目要求能对NeatPropertyBundle对象取任何成员变量值,而不是方法。变量名称也是任意的,这应该如何实现?

---------------------------------------

论坛上的讨论结果是,这是道错题。看看各位有何意见。

 
 
 
免责声明:本文为网络用户发布,其观点仅代表作者个人观点,与本站无关,本站仅提供信息存储服务。文中陈述内容未经本站证实,其真实性、完整性、及时性本站不作任何保证或承诺,请读者仅作参考,并请自行核实相关内容。
 
 
© 2005- 王朝網路 版權所有 導航