Think in patten of Java中的一道习题

类别:Java 点击:0 评论:0 推荐:

这个问题我曾在论坛上发过,但没有解答。放在这里,给大家看看:
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对象取任何成员变量值,而不是方法。变量名称也是任意的,这应该如何实现?
---------------------------------------
论坛上的讨论结果是,这是道错题。看看各位有何意见。

本文地址:http://com.8s8s.com/it/it13171.htm