- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
这是 JCiP 中的一个示例.
public class Unsafe {
// Unsafe publication
public Holder holder;
public void initialize() {
holder = new Holder(42);
}
}
public class Holder {
private int n;
public Holder(int n) {
this.n = n;
}
public void assertSanity() {
if (n != n) {
throw new AssertionError("This statement is false.");
}
}
}
[15] The problem here is not the Holder class itself, but that the Holder is not properly published. However, Holder can be made immune to improper publication by declaring the n field to be final, which would make Holder immutable;
the specification for final (see @andersoj's answer) guarantees that when the constructor returns, the final field will have been properly initialized (as visible from all threads).
For example, in Java if a call to a constructor has been inlined then the shared variable may immediately be updated once the storage has been allocated but before the inlined constructor initializes the object
holder.n
的默认值? ? (即,另一个线程在
holder
构造函数返回之前获得对
holder
的引用。)
Holder can be made immune to improper publication by declaring the n field to be final, which would make Holder immutable
An object is immutable if:
x Its state cannot be modified after construction;x All its fields are final;[12] and
x It is properly constructed (the this reference does not escape during construction).
this
引用转义”问题。对?
最佳答案
一个不可变的对象,例如String
, 似乎对所有读者都具有相同的状态,无论它的引用是如何获得的,即使同步不正确和缺乏发生前的关系。
这是通过 final
实现的Java 5 中引入的字段语义。通过最终字段的数据访问具有更强的内存语义,如 jls-17.5.1 中所定义。
在编译器重新排序和内存屏障方面,在处理 final 字段时有更多的限制,请参阅 JSR-133 Cookbook .您担心的重新排序不会发生。
是的——双重检查锁定可以通过包装器中的 final 字段来完成;没有 volatile
是必须的!但这种方法不一定更快,因为需要两次读取。
请注意,此语义适用于单个最终字段,而不是整个对象。例如,String
包含可变字段 hash
;尽管如此,String
被认为是不可变的,因为它的公共(public)行为仅基于 final
字段。
final 字段可以指向一个可变对象。例如,String.value
是 char[]
这是可变的。要求不可变对象(immutable对象)是最终字段树是不切实际的。
final char[] value;
public String(args) {
this.value = createFrom(args);
}
value
的内容构造函数退出后,就可以了。
value
的内容在构造函数中以任何顺序,都没有关系。
public String(args) {
this.value = new char[1];
this.value[0] = 'x'; // modify after the field is assigned.
}
final Map map;
List list;
public Foo()
{
map = new HashMap();
list = listOf("etc", "etc", "etc");
map.put("etc", list)
}
foo.map.get("etc").get(2)
.
foo.list.get(2)
通过不正确的发布是不安全的,即使它读取相同的目的地。
freeze
action 是在构造函数导出处定义的,与在 final 字段的分配处相反。这允许我们在构造函数内的任何地方编写来填充内部状态。
hb
) 关系。即使读取看到写入,它也不会建立任何其他操作。但是,如果 volatile 读取看到 volatile 写入,JMM 会建立
hb
以及许多 Action 之间的顺序。
final
字段语义想要做同样的事情,即使是正常的读写,也就是说,即使是通过不安全的发布。为此,在读取看到的任何写入之间添加一个内存链 (
mc
) 顺序。
deferences()
order 将语义限制为访问
通过最后的领域。
Foo
示例看看它是如何工作的
tmp = new Foo()
[w] write to list at index 2
[f] freeze at constructor exit
shared = tmp; [a] a normal write
// Another Thread
foo = shared; [r0] a normal read
if(foo!=null) // [r0] sees [a], therefore mc(a, r0)
map = foo.map; [r1] reads a final field
map.get("etc").get(2) [r2]
hb(w, f), hb(f, a), mc(a, r1), and dereferences(r1, r2)
w
对
r2
可见.
Foo
包装器,一个 map (它本身是可变的)通过不安全的发布安全地发布......如果这是有道理的。
Foo foo = new Foo(); // [w] [f]
shared_map = foo.map; // [a]
this
在卡住操作之前泄漏,最终字段语义无法保证。
this
在卡住操作之后的构造函数中,带有构造函数链接。
-- class Bar
final int x;
Bar(int x, int ignore)
{
this.x = x; // assign to final
} // [f] freeze action on this.x
public Bar(int x)
{
this(x, 0);
// [f] is reached!
leak(this);
}
x
而言,这是安全的被关注到;卡住对
x
的操作在构造函数的存在处定义,其中
x
被安排了。这可能只是为了安全泄漏而设计的
this
.
关于java - 不可变对象(immutable对象)是否不受不当发布的影响?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35167777/
为什么我的简单对象不使用 Immutable.fromJS({}) 转换为 Immutable.Map() 这是 Map() - 按预期工作 > var mymap = Immutable.Map({
如何在Immutable.js列表的任意位置插入元素? 最佳答案 您正在寻找 splice method: Splice returns a new indexed Iterable by repla
https://facebook.github.io/immutable-js/docs/#/is 我尝试比较 2 个 OrderedMap,但 Immutable.is 函数不起作用。 它只能比较
对于标准的 JS 对象,可以使用解构赋值,例如: let obj = {name: 'james', code: '007'} let {name, code} = obj // creates ne
如何获取 immutable.js 映射的第一个键(不是值)? 基本上myMap.first()将返回值,但我对 key 感兴趣...... 我可以先执行 forEach 并存储,但必须是更好的方法!
查看this ,我认为一成不变。 Record是表示“javascript不可变对象(immutable对象)”的数据结构,但我想一次更新多个字段,而不是每次创建多个调用set的对象。 我想做这样的事
为什么可以改变 scala.collection.immutable.SortedMap 和 scala.collection.immutable.TreeMap? scala> import sca
好的,我有一个对象列表,非常标准。 const list = Immutable.List([{type:'thang',data:{id:'pants'}}]); 现在我想把裤子换成短裤……所以我在
如何在 OrderedMap 的末尾添加项目? 我试过了 this.boxes = this.boxes.setIn(data); 感谢您的帮助 最佳答案 一种可能的方法是使用 concat
在开始使用 reactjs 和 redux 进行开发之后,我认为在使用 redux 的同时使用 immutable.js 会更好。 但是...也许我是智障,或者在正确使用它之前需要一些练习,一切都崩溃
我要在 Immutable.js 映射上进行一系列更改。 我应该在什么时候更喜欢使用 withMutations而不是创建中间的不可变映射? 来自 Immutable.js 文档: If you ne
我想使用 Immutable 的流类型定义来描述 map 的形状。 您可以通过以下方式描述物体的形状: const stateShape: { id: number, isActive: bo
这两个 NuGet 包有什么区别?如果我正在创建 .net 4.51 项目,我应该使用其中一个吗?我过去使用过 Microsoft.Bcl.Immutable 的测试版,但只是想知道其中一个是否会比另
基本上我想要做的是,如果您按下按钮,那么条目应该获得一个新的 CEntry。如果有人可以帮助我,那就太好了。谢谢! struct AView: View { var entries = [CEn
我有来自框架的协议(protocol) public protocol BaseMappable { /// This function is where all variable mappi
Swift 开发相对较新。尝试修改其他人编写的几个函数。目标是在用户登录后第一次调用此路径(该部分尚未设置)时离开原始路径,并在后续调用中使用其他路径。 因此,在编写将指向首次通过或非首次通过的逻辑之
这段代码 extension Collection { mutating func f() { removeFirst() } } 处理错误 cannot use mutating m
我正在处理一些使用许多不同项目“列表”的 NodeJS 代码。底层实现使用包括 Immutable.List、Immutable.Set、Javascript Array 和 Javascript S
我正在尝试使用 Reacts Immutability helpers 或 Immutable js 合并一个不可变的对象数组。我正在尝试创建一个仅包含名称已更改的记录的列表。如果名称在提交前已多次更
我被困在一个 Cannot use mutating member on immutable value: function call returns immutable value 这段代码错误:
我是一名优秀的程序员,十分优秀!