文章目录
一、其他类型转string
1.数字类型转string:to_string()
string std::to_string(int)
string std::to_string(long)
string std::to_string(unsigned long)
string std::to_string(long long)
string std::to_string(unsigned long long)
string std::to_string(float)
string std::to_string(double)
string std::to_string(long double)
例如:
#include <iostream>
#include <cstring>
using namespace std;
int main()
{
int num_int = 123;
long num_long = 1234;
long long num_long_long = 12345;
float num_float = 3.14;
double num_double = 3.1415;
long double num_long_double = 3.1415926;
string num = to_string(num_int) + " " + to_string(num_long) + " " + to_string(num_long_long) + " " + to_string(num_float) + " " + to_string(num_double) + " " + to_string(num_long_double);
cout << num << endl;
// 123 1234 12345 3.140000 3.141500 3.141593
return 0;
}
二、string转其他类型
1.string转c_str
const char* c_str() const
功能:返回string类型的字符串转化成的const char*
的临时变量
(1)直接使用
string hello = "hello";
/* 可以输出它的c形式的c_str字符串 */
cout << hello.c_str() << endl;
(2)开辟char*内存空间,strcpy()赋值
string hello = "hello";
/* 不可以当赋值给一个变量 */
// !char* cstr = hello.c_str();
/* 静态开辟内存空间 */
char c_str1[10];
strcpy(c_str1, hello.c_str());
cout << c_str1 << endl;
/* 动态开辟内存空间 */
char *c_str2 = new char[hello.length() + 1];
// 内存空间不可以直接赋值,用strcpy()赋值
// !c_str2 = hello.c_str();
strcpy(c_str2, hello.c_str());
cout << c_str2 << endl;
注意:要预留一位\0
,所以静态大一些,动态要hello.length() + 1
(3)const char*直接赋值
string hello = "hello";
// 用const char* 就不会出现非法转化错误了
const char* const_cstr = hello.c_str();
cout << const_cstr << endl;
2.string转数字类型
int std::stoi(const string& __str, size_t* __idx = 0, int __base = 10)
long std::stol(const string& __str, size_t* __idx = 0, int __base = 10)
unsigned long stoul(const string& __str, size_t* __idx = 0, int __base = 10)
long long std::stoll(const string& __str, size_t* __idx = 0, int __base = 10)
unsigned long long std::stoull(const string& __str, size_t* __idx = 0, int __base = 10)
float std::stof(const string& __str, size_t* __idx = 0)
double std::stod(const string& __str, size_t* __idx = 0)
long double std::stold(const string& __str, size_t* __idx = 0)
参数:
str
:包含但可以不只是数字的string字符串__idx
:指向一个size_t类型的对象。传入指针地址后,该对象的值会被修改为string中数值后的第一个字符所在位置__base
:进制基数,默认10进制
例如:
int num_int = stoi(to_string(123));
long num_long = stol(to_string(1234));
long long num_long_long = stoll(to_string(12345));
float num_float = stof(to_string(3.14));
double num_double = stod(to_string(3.1415));
long double num_long_double = stold(to_string(3.1415926));
来源:CSDN
作者:sandalphon4869
链接:https://blog.csdn.net/sandalphon4869/article/details/103915682