C++基础 string类型
程序员文章站
2022-03-05 12:57:29
...
string 字符型 可以保存字符串
C++使用string 需要引用
#include “<string>”
举栗子
实现俩个输出字符串 比大小 小的去前面
// ConsoleApplication12.cpp : 定义控制台应用程序的入口点。
//
#include "stdafx.h"
#include <iostream>
#include "stdlib.h"
#include <string>
using namespace std;
int _tmain(int argc, _TCHAR* argv[])
{
string str1,str2,temp;
cout<<"input strings:";
cin>>str1>>str2;
//int j = str1.compare(str2);
if( str1>str2 )
{
temp = str1;
str1=str2;
str2 = temp;
}
cout<< "now,they are:";
cout<<str1<<","<<str2<<endl;
system("pause");
return 0;
}
在string里 也是数组形式保存
string str1;
cout<<"input strings:";
cin>>str1;
cout<<str1[0]<<" "<<str1[1]<<" "<<str1[2]<<endl;
输出代码 当然 想修改 直接 str1[2] ='a';即可
string 还有很多方便的函数
上一篇: iis6.0远程代码执行(CVE-2017-7269)
下一篇: Java操作MongoDB