溫馨提示×

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

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

JAVA編程練習(xí) 創(chuàng)建風(fēng)扇對(duì)象(開(kāi)關(guān) 風(fēng)速等)

發(fā)布時(shí)間:2020-07-28 00:39:03 來(lái)源:網(wǎng)絡(luò) 閱讀:358 作者:sonissa 欄目:編程語(yǔ)言

自帶測(cè)試類
源代碼:

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";
}
}
}

運(yùn)行結(jié)果:
JAVA編程練習(xí)  創(chuàng)建風(fēng)扇對(duì)象(開(kāi)關(guān) 風(fēng)速等)

向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI