C/C++教程

C++ string实用总结

本文主要是介绍C++ string实用总结,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

数字类型转为string字符串

to_string(num);

#include<bits/stdc++.h>

using namespace std;

int main(){
	int n = 123456;
	string str = to_string(n);

	cout << str;
    return 0;
}

string字符串转为数字类型

stoi(int),stol(long), stof(float), stod(double)

#include<bits/stdc++.h>

using namespace std;

int main(){
	
	string str = "123456";
	int n = stoi(str);
	
	cout << str;
    return 0;
}

这篇关于C++ string实用总结的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!