"" に関する原因と対処

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

スポンサード リンク

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

コンパイルエラーメッセージ:
error C2784: 'bool std::operator >(const std::pair<_Ty1,_Ty2> &,const std::pair<_Ty1,_Ty2> &)': テンプレート 引数を 'const std::pair<_Ty1,_Ty2> &' に対して 'std::basic_ostream<char,std::char_traits<char>>' から減少できませんでしたC:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\utility(295): note: 'std::operator >' の宣言を確認してください

ソース(バグ有り):

#include <iostream>
#include <fstream>

int main()
{
#ifdef __STDC__
std::cout << "このコンパイラはANSI Cに基準しています。" << std::endl; #else
std::cout << "このコンパイラはANSI Cに基準していません。" > std::endl; #endif
return 0; }


原因:


対処:


ソース(修正済み):

#include <iostream>
#include <fstream>

int main()
{
#ifdef __STDC__
std::cout << "このコンパイラはANSI Cに基準しています。" << std::endl; #else
std::cout << "このコンパイラはANSI Cに基準していません。" << std::endl; #endif
return 0; }

スポンサード リンク



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