C++中将string 类型与int类型的相互转换

string 转换为int

1.atoi

#include<iostream>
using namespace std;
int main()
{
	int x = 0;
	string str1 = "10";
	string str2 = "-10";
	string str3 = "10a";
	x = atoi(str1.c_str());
	cout << x << endl;
	x = atoi(str2.c_str());
	cout << x << endl;
	x = atoi(str3.c_str());
	cout << x << endl;
	return 0;
}

在这里插入图片描述

2.strtol

long int strtol (const char str, char* endptr, int base);

str 为要转换的字符串,endstr 为第一个不能转换的字符的指针,base 为字符串 str 所采用的进制。

 #include<iostream>
using namespace std;
int main()
{
	int x = 0;
	string str1 = "10";
	string str2 = "-10";
	string str3 = "10a";
	x = strtol(str1.c_str(), nullptr, 10);
	cout << x << endl;
	x = strtol(str2.c_str(), nullptr, 10);
	cout << x << endl;
	x = strtol(str3.c_str(), nullptr, 10);
	cout << x << endl;

	return 0;
}

 

在这里插入图片描述

3.stoi

c11之后才有,需要引入 < string>

#include<iostream>
#include<string>
using namespace std;
int main()
{
	int x = 0;
	string str1 = "10";
	string str2 = "-10";
	string str3 = "10a";
	x = stoi(str1);
	cout << x << endl;
	x = stoi(str2);
	cout << x << endl;
	x = stoi(str3);
	cout << x << endl;

	return 0;
}

在这里插入图片描述

4. stringstream

需要引入< sstream>

#include<iostream>
#include<sstream>
using namespace std;
int stringToInt(const string& s)
{
	stringstream ss;
	int result;
	ss << s;
	ss >> result;
	return result;

}
int main()
{
	    string str1 = "10";
	    string str2 = "-10";
	    string str3 = "10a";
		cout << stringToInt(str1)<<endl;
		cout << stringToInt(str2)<<endl;
		cout << stringToInt(str3)<<endl;
	
}

int 转换为string

1.sprintf_s

#include<iostream>
using namespace std;
int main()
{
	int number = 10;
	char buff[128] = { 0 };
	sprintf_s(buff, 128, "%d",number);
	cout << buff << endl;

}

在这里插入图片描述

2.stringstream

需要引入

#include<iostream>
#include<sstream>
using namespace std;
int main()
{
	int number = 10;
	stringstream ss;
	ss << number;
	string str = ss.str();
	cout << str << endl;

};

在这里插入图片描述

3.to_string

c11之后才可用,需引入string

#include<iostream>
#include<string>
using namespace std;
int main()
{
	int number = 10;
	string str =to_string(number);
	cout << str << endl;

};

在这里插入图片描述

  • 7
    点赞
  • 35
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值