public member function
<forward_list>

std::forward_list::front

      reference front();const_reference front() const;
访问第一个元素
返回一个指向 forward_list 容器中第一个元素的引用。

与返回指向同一元素的迭代器的成员 forward_list::begin 不同,此函数返回直接引用。

在空容器上调用此函数会导致未定义行为。

参数



返回值

指向容器中第一个元素的引用。

如果 forward_list 对象是 const 限定的,则函数返回一个const_reference。否则,它返回一个引用.

成员类型引用const_reference是 forward_list 容器元素的引用类型(参见 member types)。

示例

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// forward_list::front
#include <iostream>
#include <forward_list>

int main ()
{
  std::forward_list<int> mylist = {2, 16, 77};

  mylist.front() = 11;

  std::cout << "mylist now contains:";
  for ( int& x : mylist ) std::cout << ' ' << x;

  std::cout << '\n';

  return 0;
}

输出
mylist now contains: 11 16 77


复杂度

常量。

迭代器有效性

没有变化。

数据竞争

访问容器(const 和非 const 版本都不会修改容器)。
第一个元素可以被调用者访问或修改。同时访问或修改其他元素是安全的。

异常安全

如果容器非空,则该函数永远不会抛出异常(no-throw guarantee)。
否则,将导致未定义行为

另见