我想实现以下目标:
如果我使用参数 a 或 b 调用方法 v2.horn(),它应该输出 a 或 b。但不知何故,我不知道该怎么做。
代码如下:
public class Vehicle {
int maxSpeed;
int wheels;
String color;
double fuelCapacity;
void horn(a,b) {
String a = "Beep!";
String b = "Boop!";
System.out.println(a);
System.out.println(b);
}
void blink() {
System.out.println("I'm blinking!");
}
}
class MyClass {
public static void main(String[ ] args) {
Vehicle v1 = new Vehicle();
Vehicle v2 = new Vehicle();
v1.color = "red";
v2.horn(a);
v1.blink();
}
}
呼如林
相关分类