getとsetメソッドを使用して温度を変換する必要がある割り当てに取り組んでいます。しかし、私がsetMethodを書くとき、Uに "charは参照解除できません"というエラーが出ます。ここに私のコードです。charを参照解除できません
public void setTemp(double temp, char scale){
// - sets the objects temperature to that specified using the
// specified scale ('K', 'C' or 'F')
if (scale.isLetter("K")){
temp = temp + 273;
}else if (scale.isLetter("C")){
temp = temp;
}else if (scale.isLetter("F")){
temp = ((9 * temp)/5) + 32;
}
}
'char'sはプリミティブです。プリミティブにはメソッドがありません。 – tkausl