CppDS.com

C++ 98 11 14 17 20 手册

std::basic_string<CharT,Traits,Allocator>::front

来自cppreference.com
< cpp‎ | string‎ | basic string
 
 
 
std::basic_string
 
CharT& front();
(C++11 起)
(C++20 前)
constexpr CharT& front();
(C++20 起)
const CharT& front() const;
(C++11 起)
(C++20 前)
constexpr const CharT& front() const;
(C++20 起)

返回到 string 中首字符的引用。若 empty() == true 则行为未定义。

参数

(无)

返回值

到首字符的引用,等价于 operator[](0)

复杂度

常数

示例

#include <iostream>
#include <string>
 
int main()
{
  {
    std::string s("Exemplary");
    char& f = s.front();
    f = 'e';
    std::cout << s << '\n'; // "exemplary"
  }
 
  {
    std::string const c("Exemplary");
    char const& f = c.front();
    std::cout << &f << '\n'; // "Exemplary"
  }
}

输出:

exemplary
Exemplary

参阅

(C++11)
访问最后的字符
(公开成员函数)
关闭