C++字符变量初始化

为什么将下面的程序修改后出现了错误?//C++字符串例题#include<iostream>#include<string>usingnamespacestd;intma... 为什么将下面的程序修改后出现了错误?
// C++字符串例题
# include <iostream>
#include <string>
using namespace std;
int main ()
{
string mystring;
mystring = "This is the initial string content";
cout << mystring << endl;
mystring = "This is a different string content";
cout << mystring << endl;
return 0;
}
·········································
上面的程序执行过程正确无误,可下面改后的程序则出现了error C2086: 'mystring' : redefinition错误提示。请大师赐教!
。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。
// C++字符串例题
# include <iostream>
#include <string>
using namespace std;
int main ()
{
string mystring;
mystring ("This is the initial string content");
cout << mystring << endl;
mystring ("This is a different string content");
cout << mystring << endl;
return 0;
}

mystring = "This is the initial string content";
mystring ("This is the initial string content");
这两个变量赋值方法不是一样的吗?
。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。
看最后一段解释文字,问什么说
mystring = "This is the initial string content";
mystring ("This is the initial string content");
这两个变量赋值方法是一样的?这是某个教材上的原话呀!!!!!11急急急。。。。。
。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。
-----------接上面第一个(略)---------------
如上面例子所示,字符串变量可以被初始化为任何字符串值,就像数字类型变量可以被
初始化为任何数字值一样。

以下两种初始化格式对字符串变量都是可以使用的:
string mystring = "This is a string";
string mystring ("This is a string");
字符串变量还可以进行其他与基本数据类型变量一样的操作,比如声明的时候不指定初
始值,和在运行过程中被重新赋值。
展开
 我来答
匿名用户
2014-03-25
展开全部
如楼上所言,mystring ("This is the initial string content");的方法只档蠢能蠢蠢尺在声明的时带高候使用,也就是说
string mystring ("This is the initial string content");是正确的,而mystring = "This is the initial string content";则是赋值,这两个不一样!
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
百度网友de1fda3
2014-03-25 · TA获得超过331个赞
知道答主
回答量:127
采纳率:0%
帮助的人:78.6万
展开全部
mystring ("This is the initial string content");这雀则缺是盯雹带参的构造顷辩函数,mystring = "This is the initial string content";这是赋值函数
本回答被提问者和网友采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式