下列哪一种叙述是正确的(D )
A. abstract修饰符可修饰字段、方法和类
B. 抽象方法的body部分必须用一对大括号{ }包住
C. 声明抽象方法,大括号可有可无
D. 声明抽象方法不可写出大括号
如下代码
package temp; public class Test { public int func() { static int i=0; //error成员函数不可以声明静态变量 i++; return i; } public static void main(String[] args) { Test test=new Test(); test.func(); int j=test.func(); System.out.println(j); } }