C++string容器

C++string容器
string基本概念:
本质:

string是C++风格的字符串,而string本质上是一个类

string和char*区别

  • char* 是一个指针
  • string是一个类,类内部封装了char*,管理这个字符串,是一个char*型的容器。

特点

  • string类内部封装了很多成员方法
  • 例如:查找find, 拷贝copy, 删除delete替换replace,插入insert
  • string管理char*所分配的内存,不用担心复制越界和取值越界等,有类内部进行负责
#include <iostream>
#include <string>
using namespace std;
//string构造函数
//构造函数原型
//string();
//string(const char* s);
//string(const string& str);
//string(int n, char c);

void test()
{
	string s1;	//使用默认构造函数	创建空字符串 调用无参构造函数
	cout << "s1 = " << s1 << endl;

	const char* str = "hello World";
	string s2(str);		//把C_string转化为string

	cout << "s2 = " << s2 << endl;
	string s3(s2);	//调用拷贝构造函数
	cout << "str3 = " << s3 << endl;

	string s4(10, 'a');
	cout << "str4 = " << s4 << endl;
}
int main()
{
	test();
	return 0;
}

C++string容器

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值