摘要: 首先定义一个urse 阅读全文
posted @ 2019-06-13 16:37 七月的风没有雨 阅读(1109) 评论(0) 推荐(0) 编辑
摘要: 一个类被加载JVM会创建一个对应的class 对象.整个类的信息都会放到对应的Class对象中.这个class对象就像一面镜子,通过这面镜子我们看到对应类的全部信息. 1 package com.studay_fanshe; 2 3 public class Test { 4 public static void main(String[] args) throws Excep... 阅读全文
posted @ 2019-06-13 16:35 七月的风没有雨 阅读(183) 评论(0) 推荐(0) 编辑
摘要: 自定义两个注解 阅读全文
posted @ 2019-06-13 16:33 七月的风没有雨 阅读(542) 评论(0) 推荐(0) 编辑
摘要: 1 public class TestAnnotation { 2 3 //过时的不推荐使用的,但是可以使用 4 @Deprecated 5 public static void test(){ 6 System.out.println("你好啊"); 7 } 8 //重写 9 @Override 10 p... 阅读全文
posted @ 2019-06-13 16:28 七月的风没有雨 阅读(107) 评论(0) 推荐(0) 编辑
摘要: 1 package com.自定义注解; 2 @TestAnnotation(studentName = "高",id = 31,age = 20) 3 public class Test { 4 public static void main(String[] args) { 5 6 7 } 8 } 1 import java.lang.annotation.Elem... 阅读全文
posted @ 2019-06-13 16:27 七月的风没有雨 阅读(232) 评论(0) 推荐(0) 编辑