抽象方法不能使用private修饰符,也不宜使用默认修饰符(default)
(1)如果使用private修饰符
public abstract class SuperClass {
/*
* The abstract method test in type SuperClass can only set a visibility modifier,
* one of public or protected
*/
private
(1)如果使用private修饰符
public abstract class SuperClass {
/*
* The abstract method test in type SuperClass can only set a visibility modifier,
* one of public or protected
*/
private