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.
iOSプロジェクトでbitVectorを実装する適切な方法は、xcodeを使用することです。
私はiOSにかなり慣れていないので、プロジェクトでC++ビットベクトルを使用できることがわかりました。任意のガイダンスをいただければ幸いです。
ありがとう
C ++ビットベクトル プロジェクトクラス.mファイルの名前をに変更.mmし、Xcodeに追加するだけです。
.m
.mm
ここでサンプルビデオチュートリアルを見る
こちらのサンプルコードチュートリアルをご覧ください
ここで1つの優れたラッピングC++チュートリアルを参照してください
C ++でのビットベクトルの「標準」の選択肢は、優先度の高いものから順に、次のとおりです。
std::bitset
boost::dynamic_bitset
std::vector<bool>