私はアプリケーションを開発しています..
class Wheel {
private int size;
Wheel(int s) {
size = s;
}
void spin() {
System.out.print(size + " inch wheel spinning, ");
}
}
public class Bicycle {
public static void main(String[] args) {
Wheel[] wa = { new Wheel(15), new Wheel(17) };
for (Wheel w : wa)
w.spin();
}
}
Wheel[] wa = { new Wheel(15), new Wheel(17) };
しかし、もっと簡単な言葉で表現するにはどうすればよいか教えてください。