public abstract TrafficLamp nextLamp();
就是这个类。但是最后一句话把public 改成private 就会报错。 为什么不能用private修饰?作者: 黄志成 时间: 2014-2-6 01:14
nextLamp是一个抽象方法,需要在子类中实现,加了私有就不实现了,所以会报错。作者: Unicorn319 时间: 2014-2-6 01:16
报错的提示是
"The abstract method nextLamp in type TrafficLamp can only set a visibility modifier, one of public or protected"