⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 radio.java

📁 some programs in java
💻 JAVA
字号:
/*
 * radio.java
 *
 * Created on 31 octombrie 2007, 08:50
 *
 * To change this template, choose Tools | Template Manager
 * and open the template in the editor.
 */

package aparaturi;

class radio extends electronic implements Interuptibil{
    
    String marca;
    
    public radio(String marca,int putere)
    {
        super(putere);
        this.marca=marca;
    }
     public String stare()
    {
        return "radioul este"+aflaStare();
    }
    
    public String opresteSeara()
    {
        opreste();
        return "radioul este oprit";
    }
    
    public String pornesteDimineata()
    {
        porneste();
        return "radioul este pornit";
    }
    
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -