STL 中的back()方法(12)

本文深入解析了C++标准库中的vector类的back函数,包括其用途、参数、返回值、复杂度、迭代器有效性、数据竞争、异常安全性以及使用示例。重点阐述了back函数如何提供对vector容器末尾元素的直接访问,以及在不同场景下的应用。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

原文地址:http://www.cplusplus.com/reference/vector/vector/back/
front和back我觉得是一对,一个头,一个尾,属性都差不多,详见:http://blog.csdn.net/qq844352155/article/details/38458047

public member function
<vector>

std::vector::back

      reference back();
const_reference back() const;
Access last element
Returns a reference to the last element in the vector.

返回最后一个元素的引用。


Unlike member vector::end, which returns an iterator just past this element, this function returns a direct reference.

和end不一样的是,end是返回一个指向超尾元素的迭代器,而这个函数是直接返回一个引用。


Calling this function on an empty container causes undefined behavior.

对一个空的容器调用该方法会导致未知的行为。

例子:

#include <iostream>
#include <vector>
#include <iterator>
using namespace std;
int main()
{
vector<int> vi;
cout<<vi.back()<<endl;


}

在linux下g++编译运行的结果




Parameters

none

Return value

A reference to the last element in the vector.
返回值是一个指向vector中最后一个元素的引用。

If the vector object is const-qualified, the function returns a const_reference. Otherwise, it returns a reference.

如果vector对象本身具有const属性,那么返回的将是const引用,否则是一般的引用。


Member types reference and const_reference are the reference types to the elements of the vector (see member types).

返回值都是属于引用类型。


Example

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// vector::back
#include <iostream>
#include <vector>

int main ()
{
  std::vector<int> myvector;

  myvector.push_back(10);

  while (myvector.back() != 0)
  {
    myvector.push_back ( myvector.back() -1 );
  }

  std::cout << "myvector contains:";
  for (unsigned i=0; i<myvector.size() ; i++)
    std::cout << ' ' << myvector[i];
  std::cout << '\n';

  return 0;
}


Output:
myvector contains: 10 9 8 7 6 5 4 3 2 1 0

Complexity

Constant.

Iterator validity

No changes.

Data races

The container is accessed (neither the const nor the non-const versions modify the container).

容器将被访问。

The reference returned can be used to access or modify elements. Concurrently accessing or modifying different elements is safe.

返回的引用可以用来访问或者是修改元素,并且这些操作都是安全的。


Exception safety

If the container is not empty, the function never throws exceptions (no-throw guarantee).

如果容器非空,该方法不会抛出异常。

Otherwise, it causes undefined behavior.

如果容器为空,该方法会导致未定义的行为。


//翻译的不好的地方请多多指导,可以在下面留言或者点击左上方邮件地址给我发邮件,指出我的错误以及不足,以便我修改,更好的分享给大家,谢谢。


转载请注明出处:http://blog.csdn.net/qq844352155

2014-8-12

于GDUT






评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值