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.
クラスのヘッダーファイルに次のものがあります。
#include <vector> #include <math.h>
クラスの説明には、次の保護されたメンバーがあります。
vector<Point2D> samples;
Point2D はクラスとして定義されています
コンパイル時に多くのエラーが発生します (C2143、C4430、および C2238)
何か案は?
コードの他の部分で名前空間を定義している場合を除き、std::vector.
std::vector
#include <vector> #include <math.h> ... std::vector<Point2D> samples;
標準のベクターにリンクする必要があります。 std::vector