摘要:
要求:利用注解测试某个类中的方法,并且将异常信息写入文件中 计算器类 public class Caculator { @Check public int add() { return 1 + 3; } @Check public int sub() { return 3 - 1; } @Check 阅读全文
摘要:
自定义注解 import java.lang.annotation.ElementType; import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; import java.lang.an 阅读全文
摘要:
自定义注解 格式:public @interface 注解名称{属性列表;} 本质:注解本质上就是一个接口。该接口继承Annotation接口 public interface Myanno extends java.lang.annotation.Annotation 属性:接口中的抽象方法 属性 阅读全文
摘要:
public class Caculator { public int add(int a, int b) { return a + b; } } 测试类 import mystring.junit.Object.Caculator; import org.junit.After; import o 阅读全文