ı我的Person类中有一个(boolean)hasDriverLicence变量。我创建了getter和setter方法,并且在person构造函数中使用了hasDriverLicence,但是在日食中说“未使用字段Person.hasDriverLicence的值。”这是代码:
public Person(int id, String firstName, String lastName, String gender, Calendar birthDate, String maritalStatus,
String hasDriverLicence) throws Exception {
this.id = id;
this.firstName = firstName;
this.lastName = lastName;
this.birthDate = birthDate;
setGender(gender);
setMaritalStatus(maritalStatus);
setHasDriverLicence(hasDriverLicence);
这是getter和setter:
public void setHasDriverLicence(String hasDriverLicence) throws Exception {
if (!(hasDriverLicence.equalsIgnoreCase("Yes")) && !(hasDriverLicence.equalsIgnoreCase("No")))
throw new Exception("Wrong input, please type Yes or No");
if (hasDriverLicence.equalsIgnoreCase("Yes")) {
this.hasDriverLicence = true;
}
else if (hasDriverLicence.equalsIgnoreCase("No")) {
this.hasDriverLicence = false;
}
}
public String getHasDriverLicence() {
if (this.hasDriverLicence = true)
return "Yes";
if (this.hasDriverLicence = false)
return "No";
else
return "";
}
答案 0 :(得分:2)
您在吸气剂中有错字。
您的if
条件实际上是设置实例字段的值,而不是检查它:
if (this.hasDriverLicence = true)
这应该是:
if (this.hasDriverLicence == true)
或更简单地说:
if (this.hasDriverLicence) {
// ...
// no need for a separate if statement for the opposite condition,
// and you can only have two states here
else {
// ...
}
因此已分配变量,但从未在代码中使用该变量。
阐述
单个=
编译但IDE会警告您声明该变量从未使用的原因是赋值运算符返回分配的值。
例如,语句:
myVariable = 1
...返回1
。
因此,当您错误地检查分配(=
)而不是原始相等性(==
)时,将始终检查分配的 value (在您的情况下,true
在第一个条件下将始终满足,false
在第二个条件下将因此不满足)。
答案 1 :(得分:-1)
也许您可以尝试重建工作空间。我看不到上述代码的问题。