スポンサード リンク
Microsoft Visual C++にて以下のソースでコンパイルエラーが発生します:
コンパイルエラーメッセージ:
error C2258: 純粋仮想関数の宣言に構文上の誤りがあります、'= 0' でなければなりません。
ソース(バグ有り):
#include <iostream> #include <string> using namespace std; |
ソース(修正済み):
#include <iostream> #include <string> using namespace std; |
スポンサード リンク