JAVA多线程编程求教
发布网友
发布时间:2022-04-18 06:58
我来回答
共4个回答
热心网友
时间:2022-04-18 08:28
package com;
import java.awt.Color;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.util.Random;
import javax.swing.JButton;
import javax.swing.JFrame;
import javax.swing.JPanel;
public class ColorThread
{
public static void main(String[] args)
{
Myframe mf =new Myframe();//实例化对象
Thread t=new Thread(mf);//加入线程
t.start();//启动线程
}
}
class Myframe extends JFrame implements Runnable,ActionListener
{
private static final long serialVersionUID = 1L;
Random rand = new Random(System.currentTimeMillis());//随机数.用当前系统时间做基数
JPanel panel = new JPanel();//变色的面板
final JButton button = new JButton("点击停止或启动");//按钮
int action=0;//变色或停止变色 判断标示
public Myframe()
{
super("1/10秒变色1次");
button.setBounds(10, 10, 200, 30); //设置按钮坐标
button.addActionListener(this); //设置按钮监听
panel.setBounds(10, 50, 100, 100); //面板坐标
panel.setBackground(Color.BLUE); //面板初始颜色
this.setBounds(100, 100, 300, 300); //frame 初始大小坐标
this.add(panel); //将面板加入frame
this.setLayout(null); //设置frame布局为null
this.add(button); //将按钮加入frame
this.setDefaultCloseOperation(3); //设置关闭frame就退出程序
this.setVisible(true); //设置frame显示为可见
}
/**
* 实现Runnable线程接口
*/
public void run()
{
while (true)//设置死循环
{
try
{
if(action==0)//判断操作为0时改变面板背景颜色
{
panel.setBackground(getcolor()); //变色
}
Thread.sleep(100);//10之一秒 的休眠
}
catch (InterruptedException e)
{
e.printStackTrace();
}
}
}
private Color getcolor() //获得颜色
{
return new Color(getNum(), getNum(), getNum());
}
private int getNum() //获得小于255的随机数字
{
return rand.nextInt(255);
}
public void actionPerformed(ActionEvent e)//监听事件
{
if(action==0) //点击后判断.修改值.
{
action =1;
}else
{
action =0;
}
}
}
//有注释了.
热心网友
时间:2022-04-18 09:46
代码就不给了,给你个思路,用一个线程刷新标签的颜色,再设置一个变量判断是否执行(比如boolean run=true),点击按钮后变量设置run为false,再点一下又变回true,这样就可以了,思路有了应该好做了,楼主加油
热心网友
时间:2022-04-18 11:20
public class A {
public static void main(String[] args) throws FileNotFoundException, IOException {
JFrame frame = new JFrame();
final JButton button = new JButton("123");
final javax.swing.Timer timer = new Timer(500, new AbstractAction() {
public void actionPerformed(ActionEvent e) {
button.setBackground(new Color((int) (Math.random() * 255), (int) (Math.random() * 255), (int) (Math.random() * 255)));
}
});
button.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e) {
if (timer.isRunning()) {
timer.stop();
} else {
timer.start();
}
}
});
timer.setRepeats(true);
frame.getContentPane().add(button);
frame.setDefaultCloseOperation(3);
frame.setVisible(true);
}
}
热心网友
时间:2022-04-18 13:12
不难吧,貌似跟多线程也没有关系.没有现成的程序.有时间帮你做做.不过现在很忙.