"" に関する原因と対処

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

スポンサード リンク

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

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

ソース(バグ有り):

#include <queue>
#include <iostream>

int main( )
{
using namespace std;
queue <int> q;
q.push, 0 );
q.push( 5 );
q.pop();
q.push( 30 );
queue <int>::size_type i = q.size( );
cout << "queue の長さは " << i << "." << endl;
i = q.front( );
cout << "queue の先頭は " << i << "." << endl; }


原因:


対処:


ソース(修正済み):

#include <queue>
#include <iostream>

int main( )
{
using namespace std;
queue <int> q;
q.push( 0 );
q.push( 5 );
q.pop();
q.push( 30 );
queue <int>::size_type i = q.size( );
cout << "queue の長さは " << i << "." << endl;
i = q.front( );
cout << "queue の先頭は " << i << "." << endl; }

スポンサード リンク



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