1. 程式人生 > >Method類及其用法

Method類及其用法

一、Method類

代表類中的一個方法的定義,一個Method由修飾符,返回值,方法名稱,引數列表組合而成。

二、Method提供的方法

1、getName();獲得方法名。

2、getModifiers();獲得修飾符。

3、getReturnTypes();返回值型別。返回class

4、getParameterTypes();返回Class[],引數型別的陣列。

5、invoke(Object obj,Object..args);

三、如何獲得Method呢?

1、Class方法。

2、Method GetMethod(String name,Class<?>...args);

3、Method[] getMethod();獲得所有的公共方法。

4、Method getDeclaredMethod(String name,Class...args);根據名稱和引數獲得對應的方法。

5、Method[] getDeclaredMethods();獲得當前類中定義的所有方法。

例子:

//獲得所有公共方法
		Method[] mt=c.getMethods();
		for(Method m:mt) {
			System.out.println(Modifier.toString(m.getModifiers())+"\t"+m.getReturnType().getSimpleName()+"\t"+m.getName());
			Class[] pt=m.getParameterTypes();
			for(Class p:pt) {
				System.out.println("\t\t"+p.getSimpleName());
			}
		}
		System.out.println("----------------------");
		//獲得所有方法
		Method[] mt1=c.getDeclaredMethods();
		for(Method m:mt1) {
			System.out.println(m.getName());
		}
		System.out.println("----------------------");
		//獲得指定方法
		Method mt2=c.getDeclaredMethod("priTest", String.class);
		mt2.setAccessible(true);
		book b=new book();
		mt2.invoke(b, "\t xixihah");
		System.out.println("----------------------");
		Method mt3=c.getDeclaredMethod("priTest");
		mt3.setAccessible(true);
		mt3.invoke(b);