"" に関する原因と対処

このコンパイルエラーの原因と対処に関して説明します。

スポンサード リンク

Microsoft Visual C++にて以下のソースでコンパイルエラーが発生します:

コンパイルエラーメッセージ:
error C2839: オーバーロードされた 'operator ->' の戻り値の型 'char *' が無効です。

ソース(バグ有り):

//string クラス文字内をソートするサンプルプログラム

#include <algorithm>
#include <iostream>
#include <string>

int main()
{
std::string s("zxcyba");
//文字の初めから最後の範囲でソートする
std::sort(s.begin(), s.end()->;

//整列の結果を出力
std::cout << s << std::endl;
return 0; }


原因:


対処:


ソース(修正済み):

//string クラス文字内をソートするサンプルプログラム

#include <algorithm>
#include <iostream>
#include <string>

int main()
{
std::string s("zxcyba");
//文字の初めから最後の範囲でソートする
std::sort(s.begin(), s.end());

//整列の結果を出力
std::cout << s << std::endl;
return 0; }

スポンサード リンク



[コンパイルエラーコード、メッセージに戻る]