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

📄 ch7_e7_6.java

📁 代码包括《Java语言与面向对象程序设计题解与实验指导》一书中 “习题解答”部分的所有程序的Java源代码和编译后生成的字节码或相应的HTML文件。 盘中的目录与书中的章节一致。
💻 JAVA
字号:
import java.applet.*; 
import java.awt.*;

public class ch7_e7_6 extends Applet 
{
    Label redLbl = new Label("红色");
    Label yellowLbl = new Label("黄色");
    Label blueLbl = new Label("蓝色");
    
    public void init()
    {
        redLbl.setBackground(Color.red);
        yellowLbl.setBackground(Color.yellow);
        blueLbl.setBackground(Color.blue);
        
        add(redLbl);
        add(yellowLbl);
        add(blueLbl);
    }
    
}

⌨️ 快捷键说明

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