1:代码如下:

// 6.23.cpp : 定义控制台应用程序的入口点。
// #include "stdafx.h"
#include <iostream>
#include <string>
using namespace std; int main(int argc, _TCHAR* argv[])
{
char aArray[] ="Welcome";
string s = aArray;
cout<<s<<endl;
s = &aArray[];
cout<<s<<endl;
return ;
}

运行结果:

C++入门经典-例6.23-字符串数组赋值与string-LMLPHP

05-11 20:07