C++ vector

Filed in C++, Program

#include <vector>
#include <iostream>

int main()
{
	using namespace std;

	vector<int> array;
	int i;

	for( i = 0; i < 10; ++i )
	{
		array.push_back( i );
	}

	vector<int>::iterator it = array.begin();  // イテレータのインスタンス化
	while( it != array.end() )  // 末尾要素まで
	{
		cout << *it << endl;  // *演算子で間接参照
		++it;                 // イテレータを1つ進める
	}

	return 0;
}

コメントを残す

メールアドレスが公開されることはありません。 * が付いている欄は必須項目です

次のHTML タグと属性が使えます: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong> <img localsrc="" alt="">