我有一个包含一堆字符串的Set<String>
。
如何从String
删除某个Set<String>
?
答案 0 :(得分:0)
让我们假设你有:
Set<String> s;
.
.
.
s.remove("myString");
这将从"myString"
中移除Set
String
,singleton
为String
。无需检查Set
是否在remove
中,因为如果删除了某些内容,则true
会返回false
,否则会 //Words service used to communicate Words REST endpoints
(function () {
'use strict';
angular
.module('words')
.factory('querywordsService', querywordsService);
querywordsService.$inject = ['$resource'];
function querywordsService($resource) {
return $resource('api/words/?syllableCount=:count', {syllableCount: '@count'},
{
update: {
method: 'PUT'
}
});
}
})();
。
答案 1 :(得分:-1)
做这样的事情
if(set.contains("arpit")) {
set.remove("arpit");
}