- python中eof表示什么语句错误
- python中for语句涉及的序列
- python中if是循环语句吗
- python中if语句与或非
要
动态获取一个对象方法的信息,首先需要通过下列方法之一创建一个
Method
类型的对象或者数组。
objectClass.getDeclaredConstructor("max",int.class,String.class); objectClass.getDeclaredConstructor("max",new Class[]{int.class,String.class});
静态方法名称 | 说明 |
---|---|
getName() | 获取该方法的名称 |
getParameterType() | 按照声明顺序以 Class 数组的形式返回该方法各个参数的类型 |
getReturnType() | 以 Class 对象的形式获得该方法的返回值类型 |
getExceptionTypes() | 以 Class 数组的形式获得该方法可能抛出的异常类型 |
invoke(Object obj,Object...args) | 利用 args 参数执行指定对象 obj 中的该方法,返回值为 Object 类型 |
isVarArgs() | 查看该方法是否允许带有可变数量的参数,如果允许返回 true,否则返回 false |
getModifiers() | 获得可以解析出该方法所采用修饰符的整数 |
public class Book1 { // static 作用域方法 static void staticMethod() { System.out.println("执行staticMethod()方法"); } // public 作用域方法 public int publicMethod(int i) { System.out.println("执行publicMethod()方法"); return 100 + i; } // protected 作用域方法 protected int protectedMethod(String s, int i) throws NumberFormatException { System.out.println("执行protectedMethod()方法"); return Integer.valueOf(s) + i; } // private 作用域方法 private String privateMethod(String... strings) { System.out.println("执行privateMethod()方法"); StringBuffer sb = new StringBuffer(); for (int i = 0; i < sb.length(); i++) { sb.append(strings[i]); } return sb.toString(); } }2)编写测试类 Test02,在该类的 main() 方法中通过反射访问 Book1 类中的所有方法,并将该方法是否带可变类型参数、入口参数类型和可能拋出的异常类型信息输出到控制台。
public class Test02 { public static void main(String[] args) { // 获取动态类Book1 Book1 book = new Book1(); Class class1 = book.getClass(); // 获取Book1类的所有方法 Method[] declaredMethods = class1.getDeclaredMethods(); for (int i = 0; i < declaredMethods.length; i++) { Method method = declaredMethods[i]; System.out.println("方法名称为:" + method.getName()); System.out.println("方法是否带有可变数量的参数:" + method.isVarArgs()); System.out.println("方法的参数类型依次为:"); // 获取所有参数类型 Class[] methodType = method.getParameterTypes(); for (int j = 0; j < methodType.length; j++) { System.out.println(" " + methodType[j]); } // 获取返回值类型 System.out.println("方法的返回值类型为:" + method.getReturnType()); System.out.println("方法可能抛出的异常类型有:"); // 获取所有可能抛出的异常 Class[] methodExceptions = method.getExceptionTypes(); for (int j = 0; j < methodExceptions.length; j++) { System.out.println(" " + methodExceptions[j]); } boolean isTurn = true; while (isTurn) { try { // 如果该成员变量的访问权限为private,则抛出异常 isTurn = false; if (method.getName().equals("staticMethod")) { // 调用没有参数的方法 method.invoke(book); } else if (method.getName().equals("publicMethod")) { // 调用一个参数的方法 System.out.println("publicMethod(10)的返回值为:" + method.invoke(book, 10)); } else if (method.getName().equals("protectedMethod")) { // 调用两个参数的方法 System.out.println("protectedMethod(\"10\",15)的返回值为:" + method.invoke(book, "10", 15)); } else if (method.getName().equals("privateMethod")) { // 调用可变数量参数的方法 Object[] parameters = new Object[] { new String[] { "J", "A", "V", "A" } }; System.out.println("privateMethod()的返回值为:" + method.invoke(book, parameters)); } } catch (Exception e) { System.out.println("在设置成员变量值时抛出异常,下面执行setAccessible()方法"); method.setAccessible(true); // 设置为允许访问private方法 isTurn = true; } } System.out.println("=============================\n"); } } }3)运行测试类 test02,程序将会依次动态访问 Book1 类中的所有方法。访问 staticMethod() 方法的运行效果如下所示:
方法名称为:staticMethod 方法是否带有可变数量的参数:false 方法的参数类型依次为: 方法的返回值类型为:void 方法可能抛出的异常类型有: 执行staticMethod()方法 =============================
方法名称为:publicMethod 方法是否带有可变数量的参数:false 方法的参数类型依次为: int 方法的返回值类型为:int 方法可能抛出的异常类型有: 执行publicMethod()方法 publicMethod(10)的返回值为:110 =============================
方法名称为:protectedMethod 方法是否带有可变数量的参数:false 方法的参数类型依次为: class java.lang.String int 方法的返回值类型为:int 方法可能抛出的异常类型有: class java.lang.NumberFormatException 执行protectedMethod()方法 protectedMethod("10",15)的返回值为:25 =============================
方法名称为:privateMethod 方法是否带有可变数量的参数:true 方法的参数类型依次为: class java.lang.String; 方法的返回值类型为:class java.lang.String 方法可能抛出的异常类型有: 在设置成员变量值时抛出异常,下面执行setAccessible()方法 执行privateMethod()方法 privateMethod()的返回值为: =============================
我想了解 Ruby 方法 methods() 是如何工作的。 我尝试使用“ruby 方法”在 Google 上搜索,但这不是我需要的。 我也看过 ruby-doc.org,但我没有找到这种方法。
Test 方法 对指定的字符串执行一个正则表达式搜索,并返回一个 Boolean 值指示是否找到匹配的模式。 object.Test(string) 参数 object 必选项。总是一个
Replace 方法 替换在正则表达式查找中找到的文本。 object.Replace(string1, string2) 参数 object 必选项。总是一个 RegExp 对象的名称。
Raise 方法 生成运行时错误 object.Raise(number, source, description, helpfile, helpcontext) 参数 object 应为
Execute 方法 对指定的字符串执行正则表达式搜索。 object.Execute(string) 参数 object 必选项。总是一个 RegExp 对象的名称。 string
Clear 方法 清除 Err 对象的所有属性设置。 object.Clear object 应为 Err 对象的名称。 说明 在错误处理后,使用 Clear 显式地清除 Err 对象。此
CopyFile 方法 将一个或多个文件从某位置复制到另一位置。 object.CopyFile source, destination[, overwrite] 参数 object 必选
Copy 方法 将指定的文件或文件夹从某位置复制到另一位置。 object.Copy destination[, overwrite] 参数 object 必选项。应为 File 或 F
Close 方法 关闭打开的 TextStream 文件。 object.Close object 应为 TextStream 对象的名称。 说明 下面例子举例说明如何使用 Close 方
BuildPath 方法 向现有路径后添加名称。 object.BuildPath(path, name) 参数 object 必选项。应为 FileSystemObject 对象的名称
GetFolder 方法 返回与指定的路径中某文件夹相应的 Folder 对象。 object.GetFolder(folderspec) 参数 object 必选项。应为 FileSy
GetFileName 方法 返回指定路径(不是指定驱动器路径部分)的最后一个文件或文件夹。 object.GetFileName(pathspec) 参数 object 必选项。应为
GetFile 方法 返回与指定路径中某文件相应的 File 对象。 object.GetFile(filespec) 参数 object 必选项。应为 FileSystemObject
GetExtensionName 方法 返回字符串,该字符串包含路径最后一个组成部分的扩展名。 object.GetExtensionName(path) 参数 object 必选项。应
GetDriveName 方法 返回包含指定路径中驱动器名的字符串。 object.GetDriveName(path) 参数 object 必选项。应为 FileSystemObjec
GetDrive 方法 返回与指定的路径中驱动器相对应的 Drive 对象。 object.GetDrive drivespec 参数 object 必选项。应为 FileSystemO
GetBaseName 方法 返回字符串,其中包含文件的基本名 (不带扩展名), 或者提供的路径说明中的文件夹。 object.GetBaseName(path) 参数 object 必
GetAbsolutePathName 方法 从提供的指定路径中返回完整且含义明确的路径。 object.GetAbsolutePathName(pathspec) 参数 object
FolderExists 方法 如果指定的文件夹存在,则返回 True;否则返回 False。 object.FolderExists(folderspec) 参数 object 必选项
FileExists 方法 如果指定的文件存在返回 True;否则返回 False。 object.FileExists(filespec) 参数 object 必选项。应为 FileS
我是一名优秀的程序员,十分优秀!