Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个字符串,例如“abbaaxaa”,我希望将字符串中的字符转换为一个集合,使其元素为“a”、“b”和“x”?(我是一个菜鸟编码器,我只是想用这个实现来表示字典的键,如果上下文很重要的话)。
到目前为止,我也有关于我尝试过的代码,但它有错误(即初始化集合和表达式语法的地方),我不知道如何去实现它......我只知道我在在返回 NSSet 的类 (+) 方法中工作。
使用NSMutableSet. 逐个字符循环遍历字符串,实现循环体以读取类似的内容
NSMutableSet
[set addObject:[str substringWithRange:NSMakeRange(idx, 1)]]