重装系统后,习惯性的安装好IIS和Office2003后.然后把以前写的几个ASP程序设置好虚拟目录,运行,出错,出错提示:"Server 对象, ASP 0177 (0x800401F3)无效的类别字符串".发现只要是"Server.CreateObject("ADODB.............")"就全部都是这个样子,因为在重装系统之前这些程序全部是都可以运行的,所以排除了代码出错的可能.
/**
* 要执行的算法,返回结果v
*/
public interface Computable<A, V> {
public V comput(final A arg);
}
/**
* 用于缓存数据
*/
public class Memoizer<A, V> implements Computable<A,