cout

       C++串和C串没有毛关系, 如下程序有助于理解这点(先说一下, VC++6.0不支持cout << s << endl):

#include 
using namespace std;

void printStr(const string &s)
{
	unsigned int n = s.size();
	for(unsigned int i = 0; i < n; i++)
	{
		printf("%c", s[i]);
	}
}

int main()
{
	char szTest[] = {'a', 'b', 'c', '\0', 'd', 'e', 'f'};
	string s(szTest, 7);
	cout << s.c_str() << endl;
	cout << s << endl;
	printStr(s);
	cout << endl;

	return 0;
}
       结果:

abc
abcdef
abcdef




你可能感兴趣的:(S1:,C/C++)