"" に関する原因と対処

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

スポンサード リンク

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

コンパイルエラーメッセージ:
error C3867: 'std::list<int,std::allocator<_Ty>>::empty': 非標準の構文です。メンバーにポインタを作成するには '&' を使用してください with [ _Ty=int ]

ソース(バグ有り):

#include <list>
#include <iostream>

int main( )
{
using namespace std;
list <int> my_sample_list;
if (my_sample_list.empty,))
cout << "リストは空です。" << endl;
my_sample_list.push_back(0);
cout << "push_backしました。" << endl;
if (my_sample_list.empty())
cout << "リストは空です。" << endl; }


原因:


対処:


ソース(修正済み):

#include <list>
#include <iostream>

int main( )
{
using namespace std;
list <int> my_sample_list;
if (my_sample_list.empty())
cout << "リストは空です。" << endl;
my_sample_list.push_back(0);
cout << "push_backしました。" << endl;
if (my_sample_list.empty())
cout << "リストは空です。" << endl; }

スポンサード リンク



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