【发布时间】:2009-05-05 02:57:22
【问题描述】:
我想在我的 iPhone 应用程序中使用 STL 集(在 XCode 中用 Objective-C 编写)。如何包含设置和/或使用标准命名空间?
在 C++ 中我会这样做:
#include<set>
using namespace std;
// use the set<T> somewhere down here...
如何在 Objective-C 中做到这一点?
【问题讨论】:
标签: c++ objective-c standard-library