TEL:400-8793-956
当前位置:程序、服务器

添加公共构造函数

提问者: 近期获赞: 浏览人数: 发布时间:2021-08-16 09:12:38

 问:添加公共构造函数,帮我我不明白..

 
答:所以您必须向 Gokart 类添加一个公共 Gokart 构造函数。使用 String color 作为参数并将其分配给私有 String mColor
 
您的代码应该如下所示:
 
public class   GoKart {
 private String mColor = "red";
  // 这里的公共构造函数
  public GoKart(String color) {
     mColor = color;
  }
   public String getColor() {
     return mColor;
  }
 }
上一篇: connot 导入名称 'Dragon'
下一篇: 语法不正确怎么才能起作用