与继承无关,就算是写个简单的类,这样的写法也是会报错:public class Test { int a; a = 0;}a = 0这样的写法只能出现在方法体内,或者在方法体外这样写,int a = 0;这是可以的。
语句不能在代码块外