/*
ISO/ANSI C++标准通过添加string类扩展了C++库,因此现在可以string类型的变量(使用C++的话
说是对象)而不是字符数组来存储字符串。读者将看到,string 类使用起来比数组简单,同时提供了将字
符串作为一种数据类型的表示方法。
要使用string类,必须在程序中包含头文件string。string类位于名称空间std中,因此您必须提供一条
using编译指令,或者使用std :: string来引用它。string类定义隐藏了字符串的数组性质,让您能够像处理普
通变量那样处理字符串。程序清单4.7说明了string对象与字符数组之间的一些相同点和不同点。
*/
- #include
- #include
- int main()
- {
- using namespace std;
- char charr1[20];
- char charr2[20]="jaguar";
- string str1;
- string str2="panther";
-
- cout<<"Enter a kind of feline:";
- cin>>charr1;
- cout<<"Enter another kind of feline:";
- cin>>str1;
- cout<<"Here are some felines:\n";
- cout<
""<"" - <
""< - <
- cout<<"The third letter in "<
" is " - <
2]< - cout<<"The third letter in "<
" is " - <
2]< - }
-
相关阅读:
【MySQL】(三)DDL数据库操作——数据库的创建、查看、修改、删除
【Python百日刷题计划】Day11~类和模块的基本练习
安装Homebrew安装Git(Mac)
【优化选址】遗传算法求解物流配送中心选址【含Matlab源码 1917期】
GPT4 Advanced data analysis Code Interpreter 做行业数据分析、可视化处理图像、视频、音频等
网络安全(黑客技术)—2024自学
【Java】恺撒密码,stream流,方法引用
【科普】ARM架构
WTM 增加IOT 大屏展示界面页面
【最佳实践】京东小程序-LBS业务场景的性能提升
-
原文地址:https://blog.csdn.net/Popcorn_zyh/article/details/133994643