JMM同步原语之final域的内存语义

final 域为引用类型

public class FinalReference {

	/**
	 * final 域.
	 */
	final int[] arr;
	
	static FinalReference ref;
	
	public FinalReference() {
		arr = new int[1];
		arr[0] = 1;
	}
	
	public static void writeOne() {
		ref = new FinalReference();
	}
	
	public static void writeTwo() {
		ref.arr[0] = 2;
	}
	
	public static void reader() {
		if (ref != null) {
			int temp = ref.arr[0];
			System.out.println("temp:" + temp);
		}
	}
}

对象引用“逸出”

public class ReferenceEscape {

	final int i;
	
	static ReferenceEscape escape;
	
	public ReferenceEscape() {
		i = 1; //1、写final 域.
		escape = this; //2、this引用再次“逸出”.
	}
	
	public static void writer() {
		new ReferenceEscape();
	}
	
	public static void reader() {
		if (escape != null) { //3
			int temp = escape.i; //4、final 域可能还未初始化.
			System.out.println("temp:" + temp);
		}
	}
}

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值