字符char字符串string整数int之间的转换

Posted stephen-jixing

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了字符char字符串string整数int之间的转换相关的知识,希望对你有一定的参考价值。

#include <iostream>
#include <string>
#include <sstream>

using namespace std ;


void i2s(int x, string &basic_string) {
    stringstream ss;
    ss << x;
    ss >> basic_string;
}

void s2i(string &basic_string , int &x ) {
    stringstream ss;
    ss << basic_string;
    ss >> x;
}

void c2s(char c , string & s){
	stringstream stream;
	stream << c;
	s = stream.str();
}



int main(){
	
	string str = "123";
	int  c ;
	
	s2i(str , c);
	
	cout << c ;
}

  

以上是关于字符char字符串string整数int之间的转换的主要内容,如果未能解决你的问题,请参考以下文章

java 怎样将整数转换成字符串时,前面加零

如何将字串 String 转换成整数 int

C# short、string、二进制之间的转换问题。

java里,如何把String字符串转换成int[]数组?

java里,如何把String字符串转换成int[]数组?

java 字符之间怎么比大小