博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
C++ 字符串
阅读量:5068 次
发布时间:2019-06-12

本文共 433 字,大约阅读时间需要 1 分钟。

string strMsg="Notify";

 //cout<<strMsg<<endl;//C++不允许直接将类型为string 输出
 strMsg.append("fu");
 char strName[20]="fan";//其余的都赋值为'\0';
 cout<<strName[5]<<endl;

 //int datas[20]={1,2};//整数数组初始化与字符数组初始化不一样,这样会报错

 strcat(strName,"fu");

 cout<<strName<<endl;
 char *pMsg="Notify";
 cout<<pMsg<<endl;
 
 int len=strMsg.length();
 cout<<len<<endl;
 int result;
 cin>>result;
 return 0;

 

转载于:https://www.cnblogs.com/ganquanfu2008/archive/2013/06/04/3117744.html

你可能感兴趣的文章
软件工程:方法与实践 第六次读书笔记
查看>>
单例模式
查看>>
Javascript quiz
查看>>
每次新建Android项目都报样式找不到的错误?
查看>>
redis连接
查看>>
C#往线程里传递参数
查看>>
PAT A1004 Counting Leaves(30)
查看>>
面向对象---继承
查看>>
for 循环的执行顺序问题
查看>>
第一个关于控件的实例(对话框)
查看>>
python对 windows系统监控插件
查看>>
CentOS7.5下安装Python3.7 --python3
查看>>
CSS Variables
查看>>
微信接口php
查看>>
hibernate_validator_08
查看>>
修改/etc/profile和/etc/environment导致图形界面无法登陆的问题
查看>>
PPPOE
查看>>
tcpdump常用命令
查看>>
(原创)Quartus硬件工程路径改变,nios工程该怎么办?
查看>>
关于 VS2013监视窗口的内存面板及寄存器面板
查看>>