string对元素的访问函数

string对元素的访问函数

  • string::operator[]有两种:
char& operator[] ( size_t pos )					//返回pos位置元素,非const类调用
const char& operator[] ( size_t pos ) const			//返回pos位置元素,const类调用
  • string::at和operator[]的用法类似
char& at (size_t pos);							//返回pos位置元素,非const类调用
const char& at (size_t pos) const;					//返回pos位置元素,const类调用
  • back()返回字符串的最后一个字符的引用(C++11)
用法:
char& back();
const char& back() const;
描述:
Returns a reference to the last character of the string.
This function shall not be called on empty strings.
  • front()返回字符串的第一个字符的引用,不同于begin方法(C++11)
用法:
char& front();
const char& front() const;
描述:
Returns a reference to the first character of the string.
Unlike member string::begin, which returns an iterator to this same character, this function returns a direct reference.
This function shall not be called on empty strings.

代码:

/*
>Plan:string元素的访问
>Author:ADiiana
>Time:2019/03/17
*/

#include<iostream>
#include<string>
using namespace std;

int main(){

	string str("test string");
	const string const_str("abcdef");

	cout << "========string::operator===========" << endl;
	for (size_t i = 0; i < str.length(); ++i)
	{
		str[i] = str[i] - 'a' + 'A';
		cout << str[i];
	}
	cout << endl;
	cout << "========string::at()===========" << endl;
	for (unsigned i = 0; i<str.length(); ++i)
	{
		std::cout << str.at(i);
	}
	cout << endl;

	//编译错误,不能给常量赋值
	/*for (size_t i = 0; i < const_str.length(); ++i)
	{
		const_str[i] = const_str[i] - 'a' + 'A';
		cout << const_str[i];
	}*/

	str.back() = '!';
	cout << str << endl;
	str.front() = 't';
	cout << str << endl;

 	system("pause");
	return 0;
}

在这里插入图片描述

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值