gpt4 book ai didi

java - 线程同步

转载 作者:行者123 更新时间:2023-12-01 19:26:03 25 4
gpt4 key购买 nike

我创建两个线程,第一个线程调用应用程序第二个线程用于读取在第一个线程上调用应用程序所产生的文件。调用应用程序工作正常,但读取文件不起作用。

这是我的代码:

/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package reciverwindow;

import java.util.logging.Level;
import java.util.logging.Logger;

/**
*
*
*/
public class NewClass1 implements Runnable {

public static void main(String[] args) {

CallMatlab c = new CallMatlab();
CUI m = new CUI();
Thread t1 = new Thread(c);
t1.start();
Thread t2 = new Thread(m);

t2.start();
/* try {
t2.sleep(3);
} catch (InterruptedException ex) {
Logger.getLogger(NewClass1.class.getName()).log(Level.SEVERE, null, ex);
}
}*/


synchronized (t2) {
try {
t2.wait(3);
t2.notifyAll();
} catch (InterruptedException ex) {
Logger.getLogger(NewClass1.class.getName()).log(Level.SEVERE, null, ex);
}
}


}

public void run() {
throw new UnsupportedOperationException("Not supported yet.");
}
}

最佳答案

您可能想发布更多代码,因为确实不清楚您要做什么以及您的同步要求是什么。

奇怪的是你的 t2.wait(3)。为什么要等三毫秒?也许您的意思是三秒(3000),这仍然有风险,但可能适合您的情况?

关于java - 线程同步,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/873164/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com