笔记——Java基础加强

Java基础加强

Junit

	1. 定义一个测试类(测试用例)
		* 建议:
			* 测试类名:被测试的类名Test		CalculatorTest
			* 包名:xxx.xxx.xx.test		cn.itcast.test

	2. 定义测试方法:可以独立运行
		* 建议:
			* 方法名:test测试的方法名		testAdd()  
			* 返回值:void
			* 参数列表:空参

	3. 给方法加@Test
	4. 导入junit依赖环境

断言:Assert.assertEquals(期望值,实际值);
注解:@Before@After


反射

在这里插入图片描述
在这里插入图片描述

* Class对象功能:
    * 获取功能:
    	1. 获取成员变量们
    			* Field[] getFields() :获取所有public修饰的成员变量
    			* Field getField(String name)   获取指定名称的 public修饰的成员变量
   
    			* Field[] getDeclaredFields()  获取所有的成员变量,不考虑修饰符
    			* Field getDeclaredField(String name)  
    	2. 获取构造方法们
    			* Constructor<?>[] getConstructors()  
    			* Constructor<T> getConstructor(<?>... parameterTypes)  
   
    			* Constructor<T> getDeclaredConstructor(<?>... parameterTypes)  
    			* Constructor<?>[] getDeclaredConstructors()  
    	3. 获取成员方法们:
    			* Method[] getMethods()  
    			* Method getMethod(String name,<?>... parameterTypes)  
    
    			* Method[] getDeclaredMethods()  
    			* Method getDeclaredMethod(String name,<?>... parameterTypes)  
    	4. 获取全类名	
    			* String getName()  

注解

JDK中预定义的一些注解
       1. @Override	:检测被该注解标注的方法是否是继承自父类(接口)2. @Deprecated:该注解标注的内容,表示已过时
       3. @SuppressWarnings:压制警告
        	* 一般传递参数all  @SuppressWarnings("all")
元注解:用于描述注解的注解
	1. @Target:描述注解能够作用的位置
		* ElementType取值:
			* TYPE:可以作用于类上
			* METHOD:可以作用于方法上
			* FIELD:可以作用于成员变量上
	2. @Retention:描述注解被保留的阶段
		* @Retention(RetentionPolicy.RUNTIME):当前被描述的注解,会保留到class字节码文件中,并被JVM读取到
	3. @Documented:描述注解是否被抽取到api文档中
	4. @Inherited:描述注解是否被子类继承
在程序使用(解析)注解:获取注解中定义的属性值
		1. 获取注解定义的位置的对象  (Class,Method,Field)
		2. 获取指定的注解
			*getAnnotation(Class) //注解.class
			//其实就是在内存中生成了一个该注解接口的子类实现对象(注解初始化为对象)
		3. 调用注解中的抽象方法获取配置的属性值
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值