我想在我的iPhone应用程序中使用STL集(在XCode中用Objective-C编写).如何包含set和/或使用标准命名空间?
在C++中我会这样做:
#include<set> using namespace std; // use the set<T> somewhere down here...
我怎么能在Objective-C中做到这一点?
c++ objective-c standard-library
c++ ×1
objective-c ×1
standard-library ×1