Error[8]: Undefined offset: 3, File: /www/wwwroot/outofmemory.cn/tmp/plugin_ss_superseo_model_superseo.php, Line: 121
File: /www/wwwroot/outofmemory.cn/tmp/plugin_ss_superseo_model_superseo.php, Line: 473, decode(

概述int main(){ string a; a[0] = '1'; a[1] = '2'; a[2] = '\0'; cout << a;} 为什么这段代码不起作用?为什么不打印字符串? 因为a是空的.如果您尝试使用空数组执行相同的 *** 作,则会遇到相同的问题.你需要给它一些尺寸: a.resize(5); // Now a is 5 chars
int main(){        string a;    a[0] = '1';    a[1] = '2';    a[2] = '
a.resize(5); // Now a is 5 chars long,and you can set them however you want
'; cout << a;}

为什么这段代码不起作用?为什么不打印字符串?

解决方法 因为a是空的.如果您尝试使用空数组执行相同的 *** 作,则会遇到相同的问题.你需要给它一些尺寸:
std::string a(5,' '); // Now there are 5 spaces,and you can use operator[] to overwrite them

或者,您可以在实例化时设置大小:

[+++] 总结

以上是内存溢出为你收集整理的C字符串为什么不能用作char数组?全部内容,希望文章能够帮你解决C字符串为什么不能用作char数组?所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

)
File: /www/wwwroot/outofmemory.cn/tmp/route_read.php, Line: 126, InsideLink()
File: /www/wwwroot/outofmemory.cn/tmp/index.inc.php, Line: 165, include(/www/wwwroot/outofmemory.cn/tmp/route_read.php)
File: /www/wwwroot/outofmemory.cn/index.php, Line: 30, include(/www/wwwroot/outofmemory.cn/tmp/index.inc.php)
C字符串为什么不能用作char数组?_C_内存溢出

C字符串为什么不能用作char数组?

C字符串为什么不能用作char数组?,第1张

概述int main(){ string a; a[0] = '1'; a[1] = '2'; a[2] = '\0'; cout << a;} 为什么这段代码不起作用?为什么不打印字符串? 因为a是空的.如果您尝试使用空数组执行相同的 *** 作,则会遇到相同的问题.你需要给它一些尺寸: a.resize(5); // Now a is 5 chars
int main(){        string a;    a[0] = '1';    a[1] = '2';    a[2] = '
a.resize(5); // Now a is 5 chars long,and you can set them however you want
'; cout << a;}

为什么这段代码不起作用?为什么不打印字符串?

解决方法 因为a是空的.如果您尝试使用空数组执行相同的 *** 作,则会遇到相同的问题.你需要给它一些尺寸:
std::string a(5,' '); // Now there are 5 spaces,and you can use operator[] to overwrite them

或者,您可以在实例化时设置大小:

总结

以上是内存溢出为你收集整理的C字符串为什么不能用作char数组?全部内容,希望文章能够帮你解决C字符串为什么不能用作char数组?所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/langs/1243308.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-06-06
下一篇 2022-06-06

发表评论

登录后才能评论

评论列表(0条)

保存