- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
这里 http://docs.oracle.com/javase/specs/jls/se8/html/jls-17.html#jls-17.4.8
是什么意思 hbi|Ci = hb|Ci
soi|Ci = so|Ci
和对于 Ai - Ci-1 中的任何读取 r,我们有 hbi(Wi(r), r)
为什么他们从 Ci-1 中减去 Ai - 或者它是某种范围?
对于 Ei 来说,什么是足够的同步边缘?
最佳答案
what does it mean hbi|Ci = hb|Ci, soi|Ci = so|Ci
也许您错过了您引用的部分顶部的定义:
We use f|d to denote the function given by restricting the domain of f to d. For all x in d, f|d(x) = f(x), and for all x not in d, f|d(x) is undefined.
We use p|d to represent the restriction of the partial order p to the elements in d. For all x,y in d, p(x,y) if and only if p|d(x,y). If either x or y are not in d, then it is not the case that p|d(x,y).
For any read r in Ai - Ci-1, we have hbi(Wi(r), r)
为什么他们从 Ci-1 中减去 Ai - 或者它是某种范围?
这是集合减法,意味着 Ai 中的元素不存在于 Ci-1 中。
what is sufficient synchronizes-with edges for Ei?
我在这里不是100%确定,但这可能意味着足以建立完全同步顺序的集合。基本上,对于任何一对 sw 边 sw(a,b) 和 sw(b,c),额外的 sw(a,c) em> 将是多余的(超出了足够的范围)。
更新
实际上,我错过了紧随该术语使用下方的正式定义:
8.
Let sswi be the swi edges that are also in the transitive reduction of hbi but not in po. We call sswi the sufficient synchronizes-with edges for Ei. If sswi(x, y) and hbi(y, z) and z in Ci, then swi(x, y) for all j ≥ i.这意味着所有可以从程序顺序 (po) 推断出的 sw-edges 也将被删除。
关于java - JMM 中的执行和因果关系要求,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25592268/
一 点睛 并发编程的三大特性是原子性、可见性和顺序性。 JVM 采用内存模型的机制来屏蔽各个平台和操作系统之间内存访问的差异,以实现让 Java 程序在各个平台下达到一致的内存访问效果,比如 C 语言
我多次看到这样的结构: class OneTimeWriter { volatile Object o; void synchronized set(Object o) {
这里 http://docs.oracle.com/javase/specs/jls/se8/html/jls-17.html#jls-17.4.8 是什么意思 hbi|Ci = hb|Ci soi|
我试图从 Java 内存模型的角度理解“顺序一致性”。 JLS 的定义,第 17 章对我来说不是那么清楚。 我会给出我的看法,如果我错了请纠正我。具有单线程顺序一致性的程序意味着如果 action1
我有一个关于 JMM 的问题。我知道什么是“之前发生”,但我不明白一件事。有一段代码: private static int x = 0; private static volatile boolea
考虑以下用 Java 编写的多线程代码: 共享变量: boolean n; // non-volatile volatile boolean v; // volatile 线
我正在尝试了解 JMM 的因果关系要求。 JMM 的这一部分描述了它 https://docs.oracle.com/javase/specs/jls/se7/html/jls-17.html#jls
这里 [ http://docs.oracle.com/javase/specs/jls/se7/html/jls-17.html#jls-17.5][1] 它说: Given a write w,
我尝试理解最终字段的语义。 让我们研究代码: public class App { final int[] data; static App instance; public
我最近偶然发现了 this jcstress 中的示例: @JCStressTest @State @Outcome(id = "10", expect =
这篇文章是在阅读后提出的:https://shipilev.net/blog/2016/close-encounters-of-jmm-kind/#pitfall-semi-sync class Bo
我正在寻找一种将对象从后台线程传递到 UI 线程的安全方法。下面的代码是否安全? // on background thread final HugeObject object = construct
我正在阅读有关 java singleton 的内容,并且遇到了一些奇怪的事情。 我会引用following artice例如(您可以轻松找到更多) 作者提供了以下单例: public class A
以下是 volatile 关键字的使用示例。 public class Test3{ public static volatile boolean stop = false;// if vol
请考虑以下代码片段。 public class Visibility { private volatile SomeData data; public static class Som
对 trylock 的不当使用 T1 T2 x = 42; while (
我只是想知道下面的重新排序在新的 JMM 模型下是否有效 Original Code: instanceVar1 = value ;// normal read operation, no
关闭。这个问题需要更多 focused .它目前不接受答案。 想改进这个问题?更新问题,使其仅关注一个问题 editing this post . 2年前关闭。 Improve this questi
假设这个类: public class AmIThreadSafe { private int a; private int b; AmIThreadSafe(int a, i
JLS 中写到关于 JMM 的 happens-before 关系(第 17.4.5 节): It should be noted that the presence of a happens-bef
我是一名优秀的程序员,十分优秀!