Java是一個十分流行的編程語言,它可以通過編寫代碼實現各種各樣有趣的程序,比如魚雷和火的模擬。
public class Torpedo { private int speed; // 速度 private int distance; // 射程 public Torpedo(int speed, int distance) { this.speed = speed; this.distance = distance; } public void launch() { System.out.println("發射魚雷,速度:" + speed + ",射程:" + distance); } public void explode() { System.out.println("魚雷爆炸!"); } }
以上代碼是一個魚雷類,它有速度和射程兩個屬性,可以通過調用launch()
方法來發射魚雷,調用explode()
方法來讓魚雷爆炸。
public class Fire { private int temperature; // 溫度 private int power; // 威力 public Fire(int temperature, int power) { this.temperature = temperature; this.power = power; } public void burn() { System.out.println("火焰噴射,溫度:" + temperature + ",威力:" + power); } public void extinguish() { System.out.println("火被撲滅!"); } }
以上代碼是一個火類,它有溫度和威力兩個屬性,可以通過調用burn()
方法讓火噴出來,調用extinguish()
方法來滅火。
通過上面的代碼,我們可以在Java語言中實現魚雷和火的模擬,讓我們感受到編程的樂趣。
下一篇php 函數 面試