摘要: 反射对象功能_获取Method 1.直接使用原生类的字节码全路径:Class<TestDemo> class = Class.forName("com.xxx.TestDemo"); 2.利用原生类的静态类属性创建:注意抛出异常Class<TestDemo> class = TestDemo.cla 阅读全文
posted @ 2022-07-26 14:49 一位程序袁 阅读(83) 评论(0) 推荐(0) 编辑
摘要: 反射_Class_获取Field 案例: public class Test3 { /** * * 3.获取成员方法们: * * *Method[] getMethods() :获取成员方法 * * Method getMethod( string name,类<?>... parameterTyp 阅读全文
posted @ 2022-07-26 14:18 一位程序袁 阅读(30) 评论(0) 推荐(0) 编辑
摘要: Junt使用步骤 测试分类: 黑盒测试:不需要写代码,给输入值,看程序是否能出期望的值 白盒测试:需要写代码,关注程序具体的执行流程 Junt使用:百盒子测试 步骤: 1.定义一个测试类(测试用例) 建议:测试类名:被测试的类名Test CalculatorTest 包名:xxx.xxx.xxx.x 阅读全文
posted @ 2022-07-26 10:37 一位程序袁 阅读(76) 评论(0) 推荐(0) 编辑