尝试使用 extcos 来动态连接运行时的界面执行, 这样用户就可以自己编组、 编译和使用我的程序。 虽然我无法解开课程 。 使用类似课程的工作在我脑海中太过头了, 但看起来像 extcos 做大部分工作 。
I try to load the class right as my program enters main. Here is what i have in there atm:
final Set<Class<? extends IAlgorithm>> classes = new HashSet<Class<? extends IAlgorithm>>();
ComponentScanner scanner = new ComponentScanner();
scanner.getClasses(new ComponentQuery() {
@Override
protected void query() {
select().
from("logic").
andStore(thoseImplementing(IAlgorithm.class).into(classes)).
returning(none());
}
});
我如何使用这个例子来称呼我实施IAlgorithm的方法?
http://sourceforge.net/projects/extcos/" rel="nown" >http://sourceforge.net/projects/extcos/