std::string a container(std::string 一个容器)
问题描述
std::string 是标准 c++ 库中的容器类,仅限于保存 char 元素吗?
Is std::string a container class in standard c++ library, restricted to hold only char elements?
推荐答案
其实是 std::basic_string
的 typedef.std::basic_string
是专门为字符串操作设计的容器类.这个容器也可以用于宽字符(wchar_t
);在这种情况下,它的 typedef 将是 wstring
.
It's a typedef of std::basic_string<char>
, actually. std::basic_string
is a container class specifically designed for string operations. This container can be used for wide characters (wchar_t
) as well; for that case its typedef would be wstring
.
这篇关于std::string 一个容器的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:std::string 一个容器
基础教程推荐
- 如何在 C++ 中处理或避免堆栈溢出 2022-01-01
- C++,'if' 表达式中的变量声明 2021-01-01
- 什么是T&&(双与号)在 C++11 中是什么意思? 2022-11-04
- 调用std::Package_TASK::Get_Future()时可能出现争用情况 2022-12-17
- C++ 标准:取消引用 NULL 指针以获取引用? 2021-01-01
- 您如何将 CreateThread 用于属于类成员的函数? 2021-01-01
- C++ 程序在执行 std::string 分配时总是崩溃 2022-01-01
- 设计字符串本地化的最佳方法 2022-01-01
- 如何定义双括号/双迭代器运算符,类似于向量的向量? 2022-01-01
- 运算符重载的基本规则和习语是什么? 2022-10-31