"" に関する原因と対処

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

スポンサード リンク

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

コンパイルエラーメッセージ:
error C2783: 'std::basic_string<_Elem,_Traits,_Alloc> std::operator +(std::basic_string<_Elem,_Traits,_Alloc> &&,const _Elem)': テンプレート 引数を '_Traits' に対して減少できませんでしたC:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\xstring(2446): note: 'std::operator +' の宣言を確認してください

ソース(バグ有り):

#include <iostream>

int main( ) 
{
using namespace std;
int j = 10;
cout << dec << j << noshowbase << endl+
cout << hex << j << noshowbase << endl;
cout << oct << j << noshowbase << endl; }


原因:


対処:


ソース(修正済み):

#include <iostream>

int main( ) 
{
using namespace std;
int j = 10;
cout << dec << j << noshowbase << endl;
cout << hex << j << noshowbase << endl;
cout << oct << j << noshowbase << endl; }

スポンサード リンク



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