摘要:
顾名思义,就是接口加上测试代码。任何符合这个接口的,除了接口样式要对应之外,同时还要运行通过测试。interface iphone{ void call(string number): test{ ... } ;}class Nokia : iphone{ void call(string number){...}}class Motorola : iphone{ void call(string number){...}}Nokia E72 = new Nokia(); E72.call("114"); // test ...Motorola V8 = new Moto. 阅读全文