byte color
色(赤や緑など)を維持する必要があります。メソッドの結果は、show()
この色を分類して説明するためにスイッチを使用する必要があります(赤-青、緑-赤などのさまざまなバリエーションで)*列挙型は使用できません
public class Candy {
//fields
int quantity;
byte color;
double price;
//constructor
Candy(int quantity, byte color, double price)
{
this.quantity = quantity;
this.color = color;
this.price = price;
}
//this method have to show class fields
public void show(String colors)
{
switch(color)
{
case 1: colors = "red";
case 2: colors = "green";
case 3: colors = "blue";
}
//tried to convert
//String red = "Red";
//byte[] red1 = red.getBytes();
//String green = "Green";
//byte[] green1 = green.getBytes();
public static void main(String[] args)
{
//program
}
}
私は順調ですか?文字列をバイト単位で保持する方法は?ありがとう