大学网 > php中文网 > 后端开发C++ 函数有哪些 STL 函数用于类型转换?正文

C++ 函数有哪些 STL 函数用于类型转换?

中国大学网 2024-10-17

C++ 函数:STL 函数中的类型转换

简介
标准模板库 (STL) 提供一系列函数,用于在不同类型之间进行转换。这些函数对于数据处理和算法实现至关重要。

类型转换函数列表

函数 描述
std::to_string 将指定值转换为字符串
std::stoi 将字符串转换为整型
std::stof 将字符串转换为浮点型
std::stod 将字符串转换为双精度浮点型
std::boolalpha 以字符串 "true" 和 "false" 的形式返回布尔值
std::noboolalpha 以 1 和 0 的形式返回布尔值

实战案例

立即学习“C++免费学习笔记(深入)”;

考虑以下代码段:

#include 
#include 
#include 

int main() {
  std::string number = "123";

  // 将字符串转换为整型
  int numberInt = std::stoi(number);

  // 将整型转换为浮点型
  float numberFloat = static_cast(numberInt);

  // 将布尔值转换为字符串
  std::string isTrue = "true";
  std::cout << std::boolalpha << std::stof(isTrue) << std::endl;

  return 0;
}

输出

1
Output: 123.000000
true

在这个示例中:

  • std::stoi 将字符串 "123" 转换为整型 numberInt。
  • static_cast 将 numberInt 强制转换为浮点型 numberFloat。
  • std::boolalpha 将布尔字符串 "true" 转换为布尔值 1,并打印出来。

结论

STL 提供了多种类型转换函数,允许您轻松地在不同类型之间进行转换。这些函数在数据操纵和算法开发中非常有用。

以上就是C++ 函数有哪些 STL 函数用于类型转换?的详细内容,更多请关注中国大学网其它相关文章!