スポンサード リンク
Microsoft Visual C++にて以下のソースでコンパイルエラーが発生します:
コンパイルエラーメッセージ:
error C3490: '<変数名>' は const オブジェクトを通じてアクセスされているため変更できません
ソース(バグ有り):
#include <iostream> #include <string> using namespace std; |
ソース(修正済み):
#include <iostream> #include <string> using namespace std; |
スポンサード リンク