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.
STL ライブラリをダウンロードしてテストを行いましたが、フォルダに「configure、make、make install」ファイルがありません。どうすればそれをビンに追加できますか? だから私はいつも使うことができます
#include <vector.h>
それ以外の
#include "vector.h"
すべてのプロジェクトに STL フォルダーを追加します。
C++ コンパイラをインストールすると、あなたが話している STL (STLPort?) を含む C++ 標準ライブラリの実装が同梱されます。
XCode と macports gcc にはこれが含まれています。今のようにこれを設定するべきではありません。
また、標準ライブラリのヘッダーには接尾辞がないことに注意してください.h。だからあなたが必要です
.h
#include <vector>