91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

JAVA編程練習 創建風扇對象(開關 風速等)

發布時間:2020-07-28 00:39:03 來源:網絡 閱讀:365 作者:sonissa 欄目:編程語言

自帶測試類
源代碼:

public class TestFan {
    public static void main(String[] args) {
    Fan o1=new Fan();
    Fan o2=new Fan();
    o1.setspeed(o1.FAST);
    o1.setradius(10);
    o1.setcolor("yellow");
    o1.seton(true);
    o2.setspeed(o1.MEDIUM);
    o2.setradius(5);
    o2.setcolor("blue");
    o2.seton(false);
    System.out.println(o1.toString());
    System.out.println(o2.toString());
    } 
}

class Fan{
int SLOW=1,MEDIUM=2,FAST=3;
private int speed=SLOW;
private boolean on=false;
private double radius=5;
String color="blue";
public Fan(){
}
public void setspeed(int newspeed){
speed=newspeed;
}
public void seton(boolean newon){
on=newon;
}
public void setradius(double newradius){
radius=newradius;
}
public void setcolor(String newcolor){
color=newcolor;
}
public int getspeed(){
return speed;
}
public boolean geton(){
return on;
}
public double getradius(){
return radius;
}
public String getcolor(){
return color;
}
public String toString(){
if(on){
return speed+" "+color+" "+radius;
}
else{
return "fan is off";
}
}
}

運行結果:
JAVA編程練習  創建風扇對象(開關 風速等)

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

武强县| 西峡县| 三穗县| 屯留县| 宁安市| 吉林省| 囊谦县| 北碚区| 鹿邑县| 峨边| 慈利县| 启东市| 白沙| 富宁县| 新绛县| 广安市| 延长县| 五台县| 射阳县| 龙泉市| 青川县| 新疆| 梅州市| 天祝| 云阳县| 天峻县| 西充县| 衡阳市| 通许县| 长兴县| 梅河口市| 吉林省| 临猗县| 财经| 冕宁县| 比如县| 光山县| 平湖市| 镇安县| 淮南市| 宜兰市|