因简书改版后无法添加扩展链接,20170120问题解析请到公众号查看,问题解析在公众号首发,公众号ID:weknow619。
package Feb2017;
public class Ques0206 {
public static void main(String[] args) {
SubOther sOther = new SubOther();
sOther.method();
}
}
class SubOther extends Other{
}
public class Other {
protected void method() {
}
}
今日问题:
请问主程序有无编译错误?