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.
I am wondering what the proper way to implement a bitVector in an iOS project is using xcode.
I am pretty new with iOS and just found out I could use the C++ bitvector in my project. Any guidance would be greatly appreciated.
Thanks
只需将C++ 位向量 项目类.m文件重命名为.mm并将其添加到 Xcode。
.m
.mm
在此处观看示例视频教程
在此处查看示例代码教程
在这里查看一个很好的包装 C++ 教程
C++ 中位向量的“标准”选择是,按优先级递减的顺序:
std::bitset
boost::dynamic_bitset
std::vector<bool>