Topic: 急呀(想做一个多线程同步的类)

  Print this page

1.急呀(想做一个多线程同步的类) Copy to clipboard
Posted by: neatrain
Posted on: 2005-08-22 17:10

请尽量使用准确的文字描述作为标题
Your next post without a proper Subject will be removed.

use [ code ] tag to format source code

Original subject :
急呀!!!请各位高手看看


我想做一个多线程同步的类,具体要求如下:
1.ovclient 类 是一个处理消息的多线程类,负责将收到的消息 通过System.out.println 打印出来。
2.如果没有收到消息,则 ovclient 线程等待5秒钟。如果收到消息,则执行打印操作。
3.消息以同步方式处理,由外部程序产生。
我写的代码如下,但是却得不到预期的效果,请各位大侠帮忙指正。先谢谢了;

ovclient 类代码如下:

import java.util.Vector;
import javax.swing.SwingUtilities;

public class ovclient implements Runnable {

private boolean listening;
private final Vector messages = new Vector();

public ovclient() {
listening = true;
}

public void processNotifyEvent(StringBuffer stringbuffer) {
synchronized (messages) {

messages.add(stringbuffer);

messages.notifyAll();

}
}

public void run() {

if (listening) {

StringBuffer stringbuffer = null;

synchronized (messages) {

while (messages.isEmpty() && listening) {
try {
messages.wait(5000L);
continue;
}
catch (InterruptedException interruptedexception) {
return;
}
catch (Throwable throwable) {
System.out.println("messages 的值为空" + throwable);
}
return;
}

stringbuffer = (StringBuffer) messages.remove(0);

}

final StringBuffer message = stringbuffer;

Runnable runnable = new Runnable() {
public void run() {
System.out.println(
"********************************************************************");
System.out.println(
"********************************************************************");
System.out.println(
"********************************************************************");
System.out.println("应该执行的 message 结果值: " + message.toString());
System.out.println(
"********************************************************************");
System.out.println(
"********************************************************************");
System.out.println(
"********************************************************************");

}
};
try {
SwingUtilities.invokeAndWait(runnable);
}
catch (Exception ex) {
System.out.println("d" + ex.getMessage());
}

}
}

public void quit() {
listening = false;
}

}


测试代码如下:

public class testOVGUIClient {
public testOVGUIClient() {

}

public static void main(String[] args)
{
ovclient serverListener = new ovclient();

Thread serverListenerThread = new Thread(serverListener, "OVGUIClient serverListener");

serverListenerThread.setDaemon(true);
serverListenerThread.start();


for(int i=0;i<10;i++){
StringBuffer testbuffer = new StringBuffer();
testbuffer.append("sssssssssssss ["+ i +"]");
serverListener.processNotifyEvent(testbuffer);
}

}

}

2.Re:急呀(想做一个多线程同步的类) [Re: neatrain] Copy to clipboard
Posted by: wonderfuture
Posted on: 2005-09-01 07:09

首先,为什么要使用后台线程呢,一旦主线程结束,后台线程支撑不了进程继续运行,而任何线程都有一个启动时间消耗问题,在后台线程启动而未投入运行之前主线程如果恰巧结束的话,那么整个程序也就over了.
其次,多线程问题\网络问题大多数是程序逻辑问题,你可以仔细分析一下那一段程序的执行逻辑,可以逐行进行测试.


   Powered by Jute Powerful Forum® Version Jute 1.5.6 Ent
Copyright © 2002-2021 Cjsdn Team. All Righits Reserved. 闽ICP备05005120号-1
客服电话 18559299278    客服信箱 714923@qq.com    客服QQ 714923