我有一个用
Java编写的示例,我想将其转换为
Swift.下面是代码的一部分.如果你能提供帮助我真的很感激.
Map<String,Integer> someProtocol = new HashMap<>(); someProtocol.put("one",Integer.valueOf(1)); someProtocol.put("two",Integer.valueOf(2)); for (Map.Entry<String,Integer> e : someProtocol.entrySet() { int index = e.getValue(); ... }
注意:entrySet()是java.util.Map
接口的方法,而getValue()是java.util.Map.Entry
接口的方法.
我相信你可以使用字典.这里有两种方法可以完成字典部分.
原文链接:https://www.f2er.com/swift/319225.htmlvar someProtocol = [String : Int]() someProtocol["one"] = 1 someProtocol["two"] = 2
或尝试使用类型推断
var someProtocol = [ "one" : 1,"two" : 2 ]
至于for循环
var index: Int for (e,value) in someProtocol { index = value }