- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试,但无法理解以下程序如何创建 Activity 错误(感谢詹姆斯·大!)。我明白发生了什么,因为我使用了Java Path Finder,它的跟踪告诉我调用了notifyAll(),然后两个线程调用wait。这意味着这些线程无限期地等待,因此出现死锁。这就是我到目前为止所理解的,但我无法掌握每个线程执行的过程,以便发生这种情况,并且希望得到一些帮助。代码如下:
/*
* Copyright (C) 2014, United States Government, as represented by the
* Administrator of the National Aeronautics and Space Administration.
* All rights reserved.
*
* The Java Pathfinder core (jpf-core) platform is licensed under the
* Apache License, Version 2.0 (the "License"); you may not use this file except
* in compliance with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0.
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
/**
* This example shows a deadlock that occurs as a result of a missed signal,
* i.e. a wait() that happens after the corresponding notify().
*
* The defect is caused by a violated monitor encapsulation, i.e. directly
* accessing monitor internal data ('Event.count') from concurrent clients
* ('FirstTask', 'SecondTask'), without synchronization with the
* corresponding monitor operations ('wait_for-Event()' and 'signalEvent()').
*
* The resulting race is typical for unsafe optimizations that try to
* avoid expensive blocking calls by means of local caches
*
* This example was inspired by a defect found in the "Remote Agent"
* spacecraft controller that flew on board of "Deep Space 1", as described
* in:
*
* Model Checking Programs
* W. Visser, K. Havelund, G. Brat, S. Park and F. Lerda
* Automated Software Engineering Journal
* Volume 10, Number 2, April 2003
*
* @author wvisser
*/
//------- the test driver
public class oldclassic {
public static void main (String[] args) {
Event new_event1 = new Event();
Event new_event2 = new Event();
FirstTask task1 = new FirstTask(new_event1, new_event2);
SecondTask task2 = new SecondTask(new_event1, new_event2);
task1.start();
task2.start();
}
}
//------- shared objects implemented as monitors
class Event {
int count = 0;
public synchronized void signal_event () {
// NOTE: this abstraction is not strictly required - even if the state space would
// be unbound, JPF could still find the error at a reasonable search depth,
// unless it's left-most branch in the search tree is unbound. If it is,
// there are two ways to work around: (1) use a different search strategy
// (e.g. HeuristicSearch with BFSHeuristic), or (2) set a random choice
// enumeration order ("+cg.randomize_choices=true"). In this example, (2)
// works just fine
count = (count + 1) % 3;
//count++; // requires "+cg.randomize_choices=true" for DFSearch policy
notifyAll();
}
public synchronized void wait_for_event () {
try {
wait();
} catch (InterruptedException e) {
}
}
}
//------- the two concurrent threads using the monitors
class FirstTask extends Thread {
Event event1;
Event event2;
int count = 0; // bad optimization - local cache of event1 internals
public FirstTask (Event e1, Event e2) {
this.event1 = e1;
this.event2 = e2;
}
@Override
public void run () {
count = event1.count; // <race> violates event1 monitor encapsulation
while (true) {
System.out.println("1");
if (count == event1.count) { // <race> ditto
event1.wait_for_event();
}
count = event1.count; // <race> ditto
event2.signal_event(); // updates event2.count
}
}
}
class SecondTask extends Thread {
Event event1;
Event event2;
int count = 0; // bad optimization - local cache of event2 internals
public SecondTask (Event e1, Event e2) {
this.event1 = e1;
this.event2 = e2;
}
@Override
public void run () {
count = event2.count; // <race> violates event2 monitor encapsulation
while (true) {
System.out.println(" 2");
event1.signal_event(); // updates event1.count
if (count == event2.count) { // <race> ditto
event2.wait_for_event();
}
count = event2.count; // <race> ditto
}
}
}
最佳答案
有无数种方式可以交错两个线程执行的操作。其中一些会导致通知丢失。这是一个非常简单的例子:
Task2 进入其 run()
方法,打印“2”,调用event1.signal_event()
,然后阻塞event2.wait_for_event()
。
然后,task1 进入其 run()
方法,打印“1”,并在 event1.wait_for_event()
中阻塞。
此时,两个线程都被阻塞,等待永远不会发生的通知。
这是一个非常简单的序列化,但它是一个可能的序列化,并且还有很多其他序列化会导致相同的情况。
关于java - 需要对 Jar PathFinder 示例中发生的丢失通知进行解释,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28590496/
TLDR:我需要对文件中的所有艺术运行 Pathfinder > Crop,该文件应用了剪贴蒙版,但似乎无法正确触发 Crop。 更新:经过几个小时的努力,我开始意识到主菜单中的裁剪选项(“效果 >
我已经实现了一个简单的 DFS(非递归)来“测试”StartNode 和 EndNode 之间是否存在路径。它按预期工作(处理双向/方向图)- 但我就是想不通如何存储路径以供以后使用。 目前我正在调试
经过几个小时的调试,该算法似乎有效。现在要检查它是否有效,我正在检查 while 循环退出时到 currentNode 位置的结束节点位置。到目前为止,这些值看起来是正确的。问题是,我离当前静止的 N
我正在尝试解决以下问题:我有一个 2D 平铺游戏,其中包括在领空飞行的飞机,试图降落在最近的机场(可以有“n”个目标)。这个想法是让飞机自己搜索最佳路径,避免碰撞。 所以我打算尝试 A* 算法,但后来
已解决:对不起。我正在不正确地重建路径。我认为 closedSet 只有从开始到结束的所有路标,但它也有一些其他路标。我想念这个概念。现在一切正常! 我在 A* 方面仍然遇到一些麻烦。 我的角色正在寻
我正在尝试,但无法理解以下程序如何创建 Activity 错误(感谢詹姆斯·大!)。我明白发生了什么,因为我使用了Java Path Finder,它的跟踪告诉我调用了notifyAll(),然后两个
我正在使用 Playcanvas 制作一个太空游戏。我想为飞行和射击的飞船添加一些人工智能。我不知道如何在 3D 空间上实现 Pathfinding.js,更不用说使用 PlayCanvas Scri
我有一个相当大的 A* 寻路函数,它会被频繁调用,并且必须放入另一个线程中,否则它会让我的游戏卡顿。我有 Java 背景,最近阅读了一篇关于 HashMap(本质上相当于 NSDictionary)的
我正在尝试使用 pathfind 命令编译代码。然而,此命令存在于 solaris 上并且没有问题。但是,当我将我的代码移植到 linux 时,我发现找不到它。 linux 上是否有任何等效项,或者我
做一些关于(“寻路”|“路径规划”)的研究,我发现很多算法基本上都在做同样的事情(找到从 A 点到 B 点的方法,但有或多或少的约束),我可以'没有发现寻路算法和路径规划算法之间有任何区别。 这两种算
我正在使用 Libtcod 和 Python 构建一个回合制策略游戏。游戏 map 具有可变地形,每个方 block 可以是 5 种类型中的一种: 平原 - 移动成本 1 森林 - 成本 2 河流 -
我正在尝试使用 Java Pathfinder,并且我的 pathfinder 正在运行。 import gov.nasa.jpf.jvm.Verify; user.java:2: package g
我的代码是 Template.homeItem.helpers({ 'shareData': function() { return { title: this.title, author:
我是一名优秀的程序员,十分优秀!