iOS 中的 STL 性能
我非常喜欢 STL,因为它的语法简单且灵活。有时必须使用STL,因为Foundation数组和字典不能包含非对象。所以,我想知道的是:
- STL在iOS中是否有性能损失?
- 有人比较过STL容器和相应的基础类之间的性能吗?
谢谢
I really like STL because of its simple syntax and its flexibility. Sometimes usage of STL is a must because Foundation array and dictionary cannot contain non-object. So, what I want to know are:
- Is there any performance penalty of STL in iOS ?
- Has anyone compared the performance between STL containers and the corresponding Foundation classes ?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
STL 在 iOS 上应该可以很好地工作,并且通常它会比基础类快得多。
STL should work well on iOS, and normally it will be substantially faster than Foundation classes.