문자열의 문자 가져오기

556 단어
#include <iostream>
#include <string>

using namespace std;

int main ()
{
//string    C         
	string v1("xiaocui");

	cout << v1[0] << endl;
	cout << v1[3] << endl;

	// size_type   int
	for(string::size_type x = 0; x != v1.size(); ++x)
	{
		cout << v1[x] << ' ';
	}

    cout << endl;//   x i a o c u i

	for(string::size_type i = 2; i != v1.size(); ++i)
	{
		v1[i] = '*';
	}

	cout << v1 << endl;//    xi*****

	return 0;
}

좋은 웹페이지 즐겨찾기