锁定问题问题
我在课堂上有一个 treeSet 它还提供了几种修改 TreeSet 集合的方法:
- addtoset
- 从 set
- setitems
中删除在 addtoSet 方法中,我需要检查该项目是否已存在于 set 中,如果是,则不添加新项目到 set 中,则不执行任何操作。
public static void addto set(final String items){
if(!set.contains(items){
//do something
}
}
public static boolean contains( final String items) {
//check wether the items exists or not
return channels.contains(channel);
}
我如何在集合周围引入读写锁定......?
I have a treeSet in a class
It also offers a couple of ways to modify the TreeSet collection:
- addtoset
- removefrom set
- setitems
In addtoSetmethod i need to check if the item is already present in set ,if yes do nothin if not add the new item to set.
public static void addto set(final String items){
if(!set.contains(items){
//do something
}
}
public static boolean contains( final String items) {
//check wether the items exists or not
return channels.contains(channel);
}
How i can introduce readWrite locking around the set....?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
假设这是 Java 代码,并且 (set) 是一个静态对象...这样的事情怎么样:(
对于 contains() 方法以及访问 (set) 的任何其他方法类似)
Assuming this is Java code, and (set) is a static object... how about something like this:
(and similar for the contains() method, and any other methods that access (set))