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.
有没有办法用正则表达式搜索Java类中的所有方法?
(public|protected|private|static|\s) +[\w\<\>\[\]]+\s+(\w+) *\([^\)]*\) *(\{?|[^;])
有了这个你可以,但在问之前先搜索,因为我只使用搜索来找到这个答案^^。
我认为您正在寻找反思 - 请参阅本教程以获取帮助。只有通过反射,您才能访问有关已加载类的信息——除非您正在考虑加载.java文件并分析其文本。
.java