这个问题我曾在论坛上发过,但没有解答。放在这里,给大家看看:
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对象取任何成员变量值,而不是方法。变量名称也是任意的,这应该如何实现?
---------------------------------------
论坛上的讨论结果是,这是道错题。看看各位有何意见。
博主分享Think in partten of Java中关于Dynamic Proxies的习题,要求用Java动态代理为配置文件创建前端对象,可获取任意成员变量值。博主给出初步实现思路,但因题目要求难以实现,论坛讨论认为是错题,询问大家意见。
1646

被折叠的 条评论
为什么被折叠?



