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.
我正在做一个项目,需要使用 Eclipse JDT 从 java 源代码中提取方法签名、名称、返回值和方法体
我可以提取方法名称、签名和返回值。但是,我无法提取方法体。
我认为您正在使用 JDT Java 模型元素:IType、IMethod、... Java 模型并不代表整个源代码结构。它只代表相同的元素,您也可以在大纲视图中看到。
要更进一步,您需要切换到AST 模型。