您好,登錄后才能下訂單哦!
這篇文章主要介紹了java反射的基本操作方法有哪些的相關知識,內容詳細易懂,操作簡單快捷,具有一定借鑒價值,相信大家閱讀完這篇java反射的基本操作方法有哪些文章都會有所收獲,下面我們一起來看看吧。
獲取類的名字
方法 | 描述 |
String getName() | 獲得包名+類名 |
String getSimpleName() | 獲得類的名字 |
Class cSuper=c.getSuperClass() | 獲取父類的Class對象 |
獲得類的屬性信息
方法 | 描述 |
Field getField(String fieldName) | 得到public屬性對象 |
Field[] getFields() | 得到所有public屬性對象 |
Field getDeclaredField(String fieldName) | 得到任意指定名稱的屬性對象 |
Field[] c.getDeclaredFields() | 得到所有的屬性對象 |
field.getModifiers() | 獲得屬性權限修飾符 |
field.getType() | 獲得屬性類型 |
field.getName() | 獲得屬性名稱 |
獲得類的方法
方法 | 描述 |
Method[] getDeclaredMethod() | 得到所有方法對象 |
Method[] c.getMethods() | 得到所有public方法對象 |
method.getModifiers() | 獲得方法訪問權限 |
method.getReturnType() | 獲得方法返回值類型 |
method.getName() | 獲得方法名稱 |
Class[] cs=method.getParameterTypes() | 獲取方法的參數 |
c.getTypeName() | 獲得參數類型 |
Constructor[] cons=c.getConstructors() | 獲得構造器 |
c.getConstructor(null) | 獲得無參構造方法 |
c.getConstructor(int.class,String.class,String.class) | 獲得指定重載的構造器 |
用反射操作對象
public class Test05 { public static void main(String[] args) throws Exception { Class c = Class.forName("demo.Person"); Constructor cons = c.getConstructor(null); Person person = (Person) cons.newInstance(); Field field = c.getDeclaredField("name"); field.setAccessible(true); //不做安全檢查,可以直接訪問 field.set(person, "王老五"); //對屬性直接賦值 System.out.println("取出name屬性值:" + field.get(person)); Method m = c.getDeclaredMethod("setName", String.class); m.invoke(person, "東施"); Method m2 = c.getDeclaredMethod("getName", null); System.out.println("通過getter獲得屬性值:" + m2.invoke(person)); } }
通過setAccessible()提高性能
setAccessible(true)可以禁用java的安全檢查。
Java中泛型僅是給編譯器javac使用的,確保數據的安全性并免去強制類型轉換。一旦編譯完成,所有與泛型相關的類型全部擦除(擦除到Object)。
使用泛型直接讀取泛型是不可行的,應為反射是操作編譯以后的類的。
為操作泛型引入了ParameterizedType,GenericArrayType,TypeVariable,WildcardType(? extends Number或者? super Integer)。
public class TestGeneric { public void test01(Map<String, Person> map, List<Person> list, String s) { System.out.println("TestGeneric.test01()"); } public Map<Integer, Person> test02() { System.out.println("TestGeneric.test02()"); return null; } public String test03() { System.out.println("TestGeneric.test03()"); return null; } public static void main(String[] args) throws NoSuchMethodException { Class c = TestGeneric.class; //參數為泛型 Method test01 = c.getMethod("test01", Map.class, List.class, String.class); Type[] types = test01.getGenericParameterTypes(); System.out.println(types.length); for (Type type : types) { System.out.println("#" + type); if (type instanceof ParameterizedType) { Type[] genericType = ((ParameterizedType) type).getActualTypeArguments(); for (Type genType : genericType) { System.out.println("泛型類型:" + genType); } System.out.println("--------------"); } } System.out.println("------------------------"); //返回值為泛型 Method m2 = c.getMethod("test02", null); Type returnType = m2.getGenericReturnType(); if (returnType instanceof ParameterizedType) { Type[] types2 = ((ParameterizedType) returnType).getActualTypeArguments(); for (Type type : types2) { System.out.println("返回值的泛型類型:" + type); } } System.out.println("-----------------------"); Method m3=c.getMethod("test03",null); Type returnType3=m3.getGenericReturnType(); System.out.println(returnType3); System.out.println(returnType3 instanceof ParameterizedType); } }
原注解
@Target 注解應用范圍
所修飾范圍 | 取值ElementType |
package包 | PACKAGE |
類,接口,枚舉,Annotation類型 | TYPE |
類型成員(方法,構造方法,成員變量,枚舉值) | CONSTRUCTOR:用于描述構造器;FIELD:用于描述域;METHOD:用于描述方法; |
方法參數和本地變量 | LOCAL_VARIABLE:用于描述局部變量;PARAMETER:用于描述參數 |
@Retention 注解的生命周期。在什么級別保存注解信息。
取值RetentionPolicy | 作用 |
SOURCE | 在源文件中有效 |
CLASS | 在class文件中有效 |
RUNTIME | 在運行時有效,可以被反射機制讀取 |
@Documented
@Inherited
自定義注解的語法
使用@interface定義自定義注解時,自動繼承了java.lang.annotation.Annotation接口。
@interface 用來聲明一個注解
其中每一個方法形式上聲明了一個參數:
~ 方法的名稱就是參數的名稱
~ 返回值類型就是參數類型(返回值類型只能是基本數據類型,Class,String和enum)
~ 可以通過default來聲明參數的默認值
String aName() default "";
~ 如果只有一個成員,一般參數名為value
注解元素必須要有值。自定義注解時通常使用空字符串或者0作為其默認值。也會使用-1表示不存在。
反射讀取注解
定義ORM表注解
@Target(ElementType.TYPE) //注解的使用范圍 @Retention(RetentionPolicy.RUNTIME) //在運行時起作用 public @interface OrmTable { String value(); }
定義ORM字段注解
@Target(ElementType.FIELD) @Retention(RetentionPolicy.RUNTIME) public @interface OrmField { String col(); String type(); int length(); }
定義javabean
@OrmTable("tb_student") public class Student { @OrmField(col = "id", type = "int", length = 10) private int id; @OrmField(col = "stuname", type = "varchar", length = 20) private String name; @OrmField(col = "age", type = "int", length = 10) private int age; public Student() { } public Student(int id, String name, int age) { this.id = id; this.name = name; this.age = age; } public int getId() { return id; } public void setId(int id) { this.id = id; } public String getName() { return name; } public void setName(String name) { this.name = name; } public int getAge() { return age; } public void setAge(int age) { this.age = age; } }
讀取javabean的注解,然后…
import orm.anno.OrmField; import orm.anno.OrmTable; import java.lang.annotation.Annotation; import java.lang.reflect.Field; public class Test { public static void main(String[] args) throws ClassNotFoundException, NoSuchFieldException { Class clazz = Class.forName("orm.entity.Student"); //獲取全部注解 Annotation[] annotations = clazz.getDeclaredAnnotations(); for (Annotation a : annotations) { System.out.println(a); } //獲取指定注解 OrmTable otb = (OrmTable) clazz.getDeclaredAnnotation(OrmTable.class); System.out.println("javabean的類注解:" + otb.value()); //獲取屬性的注解 Field field = clazz.getDeclaredField("name"); OrmField ofd = field.getDeclaredAnnotation(OrmField.class); System.out.println("[" + ofd.col() + "," + ofd.type() + "," + ofd.length() + "]"); //拼接SQL語句DDL,使用JDBC在數據庫中執行,創建數據庫表...... } }
關于“java反射的基本操作方法有哪些”這篇文章的內容就介紹到這里,感謝各位的閱讀!相信大家對“java反射的基本操作方法有哪些”知識都有一定的了解,大家如果還想學習更多知識,歡迎關注億速云行業資訊頻道。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。