This class must implement the inherited abstract method WXPayConfig.getAppID(), but cannot override it since it is not visible from AppConfig. Either make the type abstract or make the inherited method visible
解决方法:
myeclipse编写代码时候,类名处有红色报错符号,但类中的方法和属性都没报错。原因是这个类和此类的继承类不在同一个包,继承类中的方法的权限修饰符使用了默认的(没写)或者private。所以把两个继承关系的类放置在同一包,或者修改父类的修饰符为public。
本文链接:http://yayihouse.com/yayishuwu/chapter/1446