问:我不明白标题是给我的消息有什么问题。请提供代码和说明。提前致谢
GoKart.java
公共 类 GoKart {
public static final int MAX_BARS = 8 ; 私有字符串mColor ; 私人int mBarsCount ; 公共布尔值mIsBatteryEmpty (){ return mBarsCount == 0 ; }公共GoKart (字符串颜色){ mColor = color ; mBarsCount = 0 ; }公共字符串
getColor () {
返回mColor ; }公共无效收费(){ mBarsCount = MAX_BARS ; } }
答:您将方法命名为mIsBatteryEmpty。像错误提示一样,该方法必须命名为isBatteryEmpty。尝试重命名它,看看它是否有效!