首页 > 其他 > 详细

string的输出

时间:2018-09-17 22:43:01      阅读:212      评论:0      收藏:0      [点我收藏+]

#include<iostream>

#include<string>

using namespace std;

int main(){

         string str("abcde");                   //字符串初始化

        

         cout<<str<<endl;                       //用str输出字符串

         cout<<str.c_str()<<endl;               //用str.c_str()输出字符串

         cout<<str[0]<<endl;                    //用str[]输出字符串中的单个字符 ,越界后崩溃

         cout<<str.at(0)<<endl;                 //用str.at()输出字符串中的单个字符,越界后异常

        

         system("pause");

         return 0;

}

string的输出

原文:https://www.cnblogs.com/huoyuying/p/9665326.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!