是否可以获得没有注释的方法语句列表,我使用过method.getBody()
,这是输出
/*
set the value of the age integer to 32
*/
int age = 32;
我只想发表声明是这样的结果
int age = 32;
是否可以获得没有注释的方法语句列表,我使用过method.getBody()
,这是输出
/*
set the value of the age integer to 32
*/
int age = 32;
我只想发表声明是这样的结果
int age = 32;