我在文本中找不到与设置字符有关的任何内容。我以为应该是空白''

有人可以给我一些建议吗?我在这里搜索过,谷歌。我的文字等。我想在今晚上床睡觉之前先多花点时间研究一下。我知道这是一个非常初学者的问题,但是我在网上进行的所有研究都只带回数组字符问题。

public class RateEstimator
{
    // instance variables
    private boolean smoker;
    private char gender;
    private int age;
    private boolean highRisk;
    private int numTickets;
    private String health;

    // constants

    /**
     * base rate for a 100K face value policy.
     */
    public static final double BASE_RATE = 45.0;

    /**
     *?????????????????ASK HOW TO CONSTRUCT BOOLEAN AND CHAR???????
     *First constructor for objects of class RateEstimator.
     */

    public RateEstimator()
    {
        // REPLACE these comments and return statement
        // with your coding of this constructor
        this.setSmoker(false);
        this.setGender(' ');
        this.setAge(0);
        this.setHighRisk(false);
        this.setNumTickets(0);
        this.setHealth("Good");

    }

最佳答案

据我了解,您正在努力进行的编码分配部分是RateEstimator类的构造函数的实现。以下代码是我为该类编写的香草味构造函数。

public RateEstimator(boolean smoker, char gender, int age, boolean highRisk,
    int numTickets, String health) {
    this.smoker = smoker;
    this.gender = gender;
    this.age = age;
    this.highRisk = highRisk;
    this.numTickets = numTickets;
    this.health = health;
}


进一步说明:

this运算符引用正在构造的RateEstimator对象的实例。因此,this.age = age意味着将构造函数参数age分配给RateEstimator类实例中包含的变量。

09-29 21:42