-6

我将我的字符串声明为Set<String> one;.

然后我说one = "string";

得到错误Type mismatch: cannot convert from String to Set<String>

任何的想法?

4

2 回答 2

2

一组字符串不是字符串。

也许你想要这个方法Set.add()

于 2013-10-17T11:09:47.043 回答
2

添加对象以像这样设置....

Set<String>one=new HashSet<String>();
one.add("string");
于 2013-10-17T11:11:46.103 回答