"" に関する原因と対処

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

スポンサード リンク

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

コンパイルエラーメッセージ:
error C2589: ':': スコープ解決演算子 (::) の右側にあるトークンは使えません。

ソース(バグ有り):

#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; }

スポンサード リンク



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