- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我的代码有问题。计时器总体上似乎工作正常,暂停按钮也发挥了作用。
问题是当您在特定时间暂停时钟然后取消暂停时。
如果我们(比方说)在 8 秒处暂停并在一分钟后取消暂停,它不会像 9-10-11 等那样继续进行。它会变成 74-75-76...(我'我把它分成了分钟和秒)。
是否是某个线程导致了问题? (另外,我过度使用 freeze_sec 和 freeze_min 时间代码片段只是为了看看它是否会被修复,但事实并非如此。)
代码如下:
Thread t1 = null;
ss = new ServerSocket(6800);
while(true) {
s = ss.accept();
isr = new InputStreamReader(s.getInputStream());
br = new BufferedReader(isr);
message = br.readLine();
if (message.equals("START")) {
t1 = new Thread(new Thread1());
t1.start();
...
} else if (message.equals("PAUSE")) {
if(check) {
try {
check = false;
Thread1.PAUSE(true);
} catch (Exception e) {
System.out.println("Exception e");
}
} else {
check = true;
Thread1.PAUSE(false);
}
}
Thread1 类看起来像:
import java.io.*;
import java.util.Date;
import java.util.Scanner;
public class Thread1 extends MyServerFrame implements Runnable{
private static int current_min_time = 0;
private static int current_sec_time = 0;
private static int freeze_min_time = 0;
private static int freeze_sec_time = 0;
private static boolean pause = false;
private static int minutes = 0;
private int total_time_sec = 0;
private static boolean freeze_signal = false;
private static int k = 0;
@Override
public void run() {
long elapsedTime = 0L;
boolean bool = true;
int num = 0;
while (bool) {
Scanner scan = new Scanner(System.in);
if (minutes == 0) {
System.out.println("How many minutes for this half-time?");
Scanner in = new Scanner(System.in);
num = in.nextInt();
minutes = num;
}
long startTime = System.currentTimeMillis();
while (total_time_sec < minutes * 60 || freeze_signal == false) {
if (freeze_signal && k == 0) {
freeze_sec_time = current_sec_time;
freeze_min_time = current_min_time;
k++;
}
if (!pause) {
//perform db poll/check
if (elapsedTime / 1000 != current_sec_time) {
try {
clearTheFile("Half_Time.txt");
} catch (IOException e) {
System.out.println("Exception");
}
if (!freeze_signal && k > 0) {
current_sec_time = freeze_sec_time;
current_min_time = freeze_min_time;
k = 0;
}
current_sec_time++;
total_time_sec = current_sec_time + current_min_time / 60;
print_in_txt();
}
elapsedTime = (new Date()).getTime() - startTime;
if (current_sec_time == 60) {
if (!freeze_signal && k > 0) {
current_sec_time = freeze_sec_time;
current_min_time = freeze_min_time;
try {
clearTheFile("Half_Time.txt");
} catch (IOException e) {
System.out.println("Exception");
}
print_in_txt();
k = 0;
}
current_sec_time = 0;
current_min_time++;
total_time_sec = current_sec_time + current_min_time / 60;
startTime = System.currentTimeMillis();
elapsedTime = (new Date()).getTime() - startTime;
try {
clearTheFile("Half_Time.txt");
} catch (IOException e) {
System.out.println("Exception");
}
print_in_txt();
}
}
}
}
}
public static void clearTheFile(String txt_name) throws IOException {
try {
FileWriter fwOb = new FileWriter(txt_name, false);
PrintWriter pwOb = new PrintWriter(fwOb, false);
pwOb.flush();
pwOb.close();
fwOb.close();
} catch (IOException e) {}
}
public static void print_in_txt() {
PrintWriter out;
try {
out = new PrintWriter("Half_Time.txt");
out.println(String.format("%02d", current_min_time) + ":" + String.format("%02d", current_sec_time));
out.print("");
out.close();
} catch (FileNotFoundException e) {
System.err.println("File doesn't exist");
e.printStackTrace();
}
}
public static void PAUSE(boolean p) {
if (p) {
pause = true;
freeze_signal = true;
} else {
current_sec_time = freeze_sec_time;
current_min_time = freeze_min_time;
try {
clearTheFile("Half_Time.txt");
} catch (IOException e) {
System.out.println("Exception");
}
print_in_txt();
pause = false;
freeze_signal = false;
}
}
}
最佳答案
所以,在花了一些时间思考这个想法之后,我突然意识到你实际上根本不需要线程。
您需要的是一种计算两个时间点之间的持续时间的方法,它不需要线程来更新状态,它会自动完成。
线程只是在做“其他事情”
因此,基于此,我从我的 previous answers 中获取了一个 StopWatch
类。 ...
public class StopWatch {
private Instant startTime;
private Duration totalRunTime = Duration.ZERO;
public StopWatch start() {
startTime = Instant.now();
return this;
}
public StopWatch stop() {
Duration runTime = Duration.between(startTime, Instant.now());
totalRunTime = totalRunTime.plus(runTime);
startTime = null;
return this;
}
public StopWatch pause() {
return stop();
}
public StopWatch resume() {
return start();
}
public StopWatch reset() {
stop();
totalRunTime = Duration.ZERO;
return this;
}
public boolean isRunning() {
return startTime != null;
}
public Duration getDuration() {
Duration currentDuration = Duration.ZERO;
currentDuration = currentDuration.plus(totalRunTime);
if (isRunning()) {
Duration runTime = Duration.between(startTime, Instant.now());
currentDuration = currentDuration.plus(runTime);
}
return currentDuration;
}
}
并应用它,以便可以在线程
中使用它,这将简单地打印运行时间。
围绕这一点,我添加了暂停、恢复和停止线程的功能,以演示基本思想...
public class StopWatchRunnable implements Runnable {
private final Lock pauseLock = new ReentrantLock();
private final Condition pauseCondtion = pauseLock.newCondition();
private final AtomicBoolean isPaused = new AtomicBoolean(false);
private final AtomicBoolean isRunning = new AtomicBoolean(true);
private final StopWatch stopWatch = new StopWatch();
@Override
public void run() {
stopWatch.start();
while (isRunning.get()) {
while (isPaused.get()) {
pauseLock.lock();
stopWatch.pause();
try {
pauseCondtion.await();
} catch (InterruptedException ex) {
} finally {
pauseLock.unlock();
stopWatch.resume();
}
}
try {
Thread.sleep(1000);
} catch (InterruptedException ex) {
}
Duration duration = stopWatch.getDuration();
String formatted = String.format("%dhrs %02dmins, %02dseconds", duration.toHours(), duration.toMinutesPart(), duration.toSecondsPart());
System.out.println(formatted);
}
}
public void stop() {
pauseLock.lock();
try {
isPaused.set(false);
isRunning.set(false);
} finally {
pauseCondtion.signalAll();
pauseLock.unlock();
}
}
public void pause() {
pauseLock.lock();
try {
isPaused.set(true);
} finally {
pauseLock.unlock();
}
}
public void resume() {
pauseLock.lock();
try {
isPaused.set(false);
} finally {
pauseCondtion.signalAll();
pauseLock.unlock();
}
}
}
这基本上采用上面的代码并将其转储到一个简单的可运行示例中,该示例演示了暂停/恢复功能
import java.time.Duration;
import java.time.Instant;
import java.util.concurrent.atomic.AtomicBoolean;
import java.util.concurrent.locks.Condition;
import java.util.concurrent.locks.Lock;
import java.util.concurrent.locks.ReentrantLock;
public class StopWatchExample {
public static void main(String[] args) throws InterruptedException {
new StopWatchExample();
}
public StopWatchExample() throws InterruptedException {
StopWatchRunnable stopWatch = new StopWatchRunnable();
Thread thread = new Thread(stopWatch);
thread.start();
Thread.sleep(5000);
System.out.println("Pause...");
stopWatch.pause();
Thread.sleep(5000);
System.out.println("Resume...");
stopWatch.resume();
Thread.sleep(5000);
System.out.println("Stop...");
stopWatch.stop();
thread.join();
System.out.println("All done...");
}
public class StopWatch {
private Instant startTime;
private Duration totalRunTime = Duration.ZERO;
public StopWatch start() {
startTime = Instant.now();
return this;
}
public StopWatch stop() {
Duration runTime = Duration.between(startTime, Instant.now());
totalRunTime = totalRunTime.plus(runTime);
startTime = null;
return this;
}
public StopWatch pause() {
return stop();
}
public StopWatch resume() {
return start();
}
public StopWatch reset() {
stop();
totalRunTime = Duration.ZERO;
return this;
}
public boolean isRunning() {
return startTime != null;
}
public Duration getDuration() {
Duration currentDuration = Duration.ZERO;
currentDuration = currentDuration.plus(totalRunTime);
if (isRunning()) {
Duration runTime = Duration.between(startTime, Instant.now());
currentDuration = currentDuration.plus(runTime);
}
return currentDuration;
}
}
public class StopWatchRunnable implements Runnable {
private final Lock pauseLock = new ReentrantLock();
private final Condition pauseCondtion = pauseLock.newCondition();
private final AtomicBoolean isPaused = new AtomicBoolean(false);
private final AtomicBoolean isRunning = new AtomicBoolean(true);
private final StopWatch stopWatch = new StopWatch();
@Override
public void run() {
stopWatch.start();
while (isRunning.get()) {
while (isPaused.get()) {
pauseLock.lock();
stopWatch.pause();
try {
pauseCondtion.await();
} catch (InterruptedException ex) {
} finally {
pauseLock.unlock();
stopWatch.resume();
}
}
try {
Thread.sleep(1000);
} catch (InterruptedException ex) {
}
Duration duration = stopWatch.getDuration();
String formatted = String.format("%dhrs %02dmins, %02dseconds", duration.toHours(), duration.toMinutesPart(), duration.toSecondsPart());
System.out.println(formatted);
}
}
public void stop() {
pauseLock.lock();
try {
isPaused.set(false);
isRunning.set(false);
} finally {
pauseCondtion.signalAll();
pauseLock.unlock();
}
}
public void pause() {
pauseLock.lock();
try {
isPaused.set(true);
} finally {
pauseLock.unlock();
}
}
public void resume() {
pauseLock.lock();
try {
isPaused.set(false);
} finally {
pauseCondtion.signalAll();
pauseLock.unlock();
}
}
}
}
关于java - 使用线程搞乱了我的暂停系统,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59078556/
所以我昨天尝试开始使用 std::initializer_list 但这并不是一个巨大的成功。这是我最后的尝试之一: #include #include struct XmlState
我读到,JVM gc 在找到无法访问的对象后,会运行该对象的 Finalize() 方法。然后它检查该对象是否仍然无法访问,如果不是则删除它。所以我写了一个终结,使它的对象的引用再次可用: publi
所以,我收到了一些文件,其中包含一堆这样的东西 var time=0;//ÓÎϷʱ¼ä 很明显,评论对应的东西,我想看,但是乱七八糟的,我不知道为什么。 1) 我怎么读这个 2)如何避免 最佳答案
在阅读之前,请注意我是 jquery、html 和 css 方面的初学者。 在将 jquery 安装到我的网站之前,我将页眉和页脚固定在固定位置,以便它们粘在浏览器的顶部和底部。当我安装jquery时
我用Minamaze1.1.2主题免费添加了一个网站。在更改 CSS 代码时,我以某种方式更改了 slider 图片的尺寸。现在左侧与右侧不成比例。 在网址中可以看到: http://springlo
我已经创建了一个下拉框阴影和悬停图像的示例,除了通常的问题 internet explerror 之外,它似乎工作正常。你可以在这里查看 fiddle : www.jsfiddle.net/kcD6j
我正在按照 Spring 教程开始使用 JPA,并且我有一个带有 user 表的基本 mysql 数据库。 我已按如下方式设置User.java: package com.test.models; i
假设我有三个表 - 用户、服务器和付款。每个用户可以拥有多个服务器,每个服务器可以进行多次支付。假设我想查找最近的付款并获取有关这些付款所附加的服务器/客户的信息。这是一个可以执行此操作的查询: SE
我为我的购物车、注册、登录和联系表启用了 SSL。当启用 SSL 时,jquery 被禁用。我看到谷歌也有使用 https 导入的 jquery。 这是页面 https://americanbookc
这是一个标准任务:在应用程序的共享首选项中存储一些值,以便以后能够检索它。但是人们会发现有 3 个函数可以在其中存储一个值: //1. public static SharedPreferences
我正在尝试使用 SLRequest iOS API 获取 facebook 数据,这似乎工作正常 - NSDictionary *parameters = @{}; NSURL *feedURL =
好的,所以我用 jQuery 实现了整个页面的隐藏/淡入效果。一切都很顺利,直到我意识到delay() + fadeIn()导致我的 Hashtag Links 以顶部的滚动位置加载,而不是 #my_
因此,在我将 DNS 移至 Godaddy 之前,该站点在 Internet Explorer 中运行良好。这是网站.. http://csdassociates.com/ ...关于为什么这不再正确
由于某些奇怪的原因,我放置在任何 gridview 中的所有按钮看起来都真的缩小了(如下图所示),即使 gridview 是默认的并且没有附加 CSS。 会不会是其他一些 CSS,因为我有太多代码无法
我目前正在实现一个身份验证系统,其中用户登录并从服务器接收 JWT token ,该 token 存储在 localStorage 中。我还编写了一个自定义 HttpInterceptor,它将用户的
我正在尝试使 QGridLayout 可滚动。它可能包含几个自定义小部件,小部件的数量不固定。当有超过 x 个小部件时,QGridLayout 必须是可滚动的,x 是任意数字。 问题是,当我使用 QS
更改我的系统 PATH 变量似乎把一切都搞砸了。 因此,我尝试运行 rake device:android:product 来制作我一直在使用 RhoMobile/Rhodes 开发的应用程序的 AP
我有一些中文字符(例如中文(简体))存储在内容类型为utf8_bin的mysql数据库中。 我使用以下代码从数据库中提取数据: if($stmt = $mysqli->prepare("SELECT
我们需要创建和销毁 QApplication 的实例,因为我们想在现有主机应用程序的插件中使用 Qt。 void multiQT() { int argc = 0; QApplicat
我是一名优秀的程序员,十分优秀!