- 随机背景(可通用)
- 调用包
- 主类(JFrame继承类)
- 随机颜色
- 总结
随机背景:通过调用窗口面板的setBackground()方法,设置面板的背景颜色,方法的参数为Color类实例,Color类调用Color(int r, int g, int b)构造方法生成实例对象,介于功能的封装性和通用性将随机颜色封装至randColor类中。
调用包import java.awt.Color; //调用颜色通用类,为之后的随机颜色做铺垫
import java.util.Random; // 实现随机数,默认lang包中的Math.random()方法,也可以实现同样的功能
import javax.swing.*; //建立窗口
import java.awt.*; //调用其中的一些对窗口样式设置的方法
import java.awt.event.ActionEvent; //活动事件
import java.awt.event.ActionListener; //监听器
主类(JFrame继承类)
public class MyFrame extends JFrame implements ActionListener{ //继承JFrame类时,实现ActionListener接口
public MyFrame(){
setTitle("Main_Login");
init();
setBounds(100,100,450,250);
setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
}
void init(){
setLayout(new BorderLayout());
JButton button = new JButton("点击我变颜色");
button.addActionListener(this);
//也可用Lambda表达式
/*
button.addActionListener((e)->{
setBGC();
});
*/
add(button,BorderLayout.NORTH);
}
public static void main(String[] args) {
MyFrame mainFrame = new MyFrame();
mainFrame.setVisible(true);
}
private void setBGC(){ //设置背景颜色
randColor BGC = new randColor();
this.getContentPane().setBackground(BGC.rc);
BGC.setRGB();
}
public void actionPerformed(ActionEvent e){
setBGC();
}
}
随机颜色
//介于对数据的封装,应取消set与get方法
class randColor {
Random rand = new Random();
Color rc;
int r,g,b;
public randColor(){
r = rand.nextInt(255);
g = rand.nextInt(255);
b = rand.nextInt(255);
rc = new Color(r,g,b);
}
public void setRGB(){
r = rand.nextInt(255);
g = rand.nextInt(255);
b = rand.nextInt(255);
rc = new Color(r,g,b);
}
}
总结
本次发布为码弟的第一个小作品,虽然代码量不多,但实现的功能有意思,以后会发布更多好玩的小程序,感谢各位看到这里。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)