java 方法加锁,在Java中增加锁的数量的最佳方法是什么?

I wanted to know what is the best way to increase number of locks in Java. Other than which is implemented in ConcurrentHashMap i.e. Based on Fixed array and by calculating hash of key to refer index of array?

Below is what is expected.

If doMoreThing() for one object is in process then I should not do doAnotherThing() for the same object if it called from different thread.

public void doSomething(int i) {

doAnotherThing(i);// some checks here based on it it will call to

// doMoreThing

doMoreThing(i);

}

解决方案

Every Object in Java has an associated lock. If you want a new lock, you can create a new Object. The referenced question doesn't make it clear why you're trying to increase the number of locks, or what you mean by that. Maybe you can provide more details.

Update following changed question

I think I see what you're aiming at: effectively, you want a synchronized block on the int that doSomething is getting passed. There are two relatively simple ways to do what you're after:

a) Is it really important that several threads be able to call doSomething simultaneously with different ints? If not, you could just place both calls within a synchronized(this)

b) ints are not Objects. If you change doSomething to take an Integer and also change whatever's calling doSomething (and whatever's calling that, and so forth) to also use Integers, you can synchronize on the Integer. It's important here to make sure that every caller will be using the same Integer object - it's possible to have multiple Integers that have the same int value, but synchronizing on different Integers won't provide the protection you're looking for.

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

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值