Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我目前正在开发一个项目,在该项目中发现了以下语法:
Method m = bluetoothDevice.getClass().getMethod("createBond", (Class[]) null);
Java中“方法”类的目的是什么以及我们为什么使用它?请举例说明 提前谢谢!
PS:我已经看过 Java 文档但无法理解。
Method 类是关于元编程的“反射”API 的一部分。这意味着您可以将程序的结构作为数据处理并在 java 程序中处理它。这允许灵活的通用或抽象解决方案。方法本身只是表示 Java 类中的一个方法。还有其他类代表 Java 程序的其他部分(例如Class)。
Class