如何从Set <string>中删除字符串?

时间:2016-07-20 13:33:42

标签: string set

我有一个包含一堆字符串的Set<String>。 如何从String删除某个Set<String>

2 个答案:

答案 0 :(得分:0)

让我们假设你有:

Set<String> s;
.
.
.
s.remove("myString");

这将从"myString"中移除Set StringsingletonString。无需检查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");
}