2009-05-21 10:32 c++ int/string转换

简介: 1. int to string 一、使用atoi 说明: itoa(   int   value,   char   *string,   int   radix   );       第一个参数:你要转化的int;       第二个参数:转化后的char*;       第三个参数:你要...

1. int to string

一、使用atoi

说明:

itoa(   int   value,   char   *string,   int   radix   );  
    第一个参数:你要转化的int;  
    第二个参数:转化后的char*;  
    第三个参数:你要转化的进制;  

举例:

//-------------------------------------  
//功能:C++ int 转 string (使用atoi)   
//环境:VS2005  
//-------------------------------------  
 
#include "stdafx.h"  
#include <iostream>  
using namespace std;  
 
int main(int argc, char* argv[])  
{  
    int n = 30;    
    char c[10];  
      
    itoa(n, c, 2);  
    cout << "2-> " << c << endl;  
 
    itoa(n, c, 10);  
    cout << "16-> " <<  c << endl;  
 
    itoa(n, c, 16);   
    cout << "10-> " <<  c << endl;  
 
    system("pause");  
    return 0;  
}

输出:

2-> 11110  
16-> 30  
10-> 1e  
请按任意键继续. . .

 

二、使用sprintf

头文件 #include<stdio.h>

语法: int sprintf(string format, mixed [args]...);

返回值:字符串长度(strlen)

转换字符

=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-

% 印出百分比符号,不转换。

b 整数转成二进位。

c 整数转成对应的 ASCII 字元。

d 整数转成十进位。

f 倍精确度数字转成浮点数。

o 整数转成八进位。

s 整数转成字串。

x 整数转成小写十六进位。

X 整数转成大写十六进位。

=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
举例:

//-------------------------------------  
//功能:C++ int 转 string (使用sprintf)   
//环境:VS2005  
//-------------------------------------  
 
#include "stdafx.h"  
#include <iostream>  
#include <string>  
using namespace std;  
 
int main()  
{  
    int n = 30;  
    char c[20];  
 
    sprintf(c, "%d", n);      
    cout << c << endl;  
 
    sprintf(c, "%o", n);      
    cout << c << endl;  
 
    sprintf(c, "%X", n);      
    cout << c << endl;  
 
    sprintf(c, "%c", n);      
    cout << c << endl;  
 
    float f = 24.678;  
    sprintf(c, "%f", f);      
    cout << c << endl;  
 
    sprintf(c, "%.2f", f);      
    cout << c << endl;  
 
    sprintf(c, "%d-%.2f", n, f);  
    cout << c << endl;  
 
    system("pause");  
    return 0;  
}  

输出:

30  
36  
1E  
//注:这里是个特殊符号  
24.677999  
24.68  
30-24.68  
请按任意键继续. . .

三、使用stringstream

举例:

//-------------------------------------  
//功能:C++ int 转 string (使用stringstream)   
//环境:VS2005  
//-------------------------------------  
 
#include "stdafx.h"  
#include <iostream>  
#include <string>  
#include <sstream>  
using namespace std;  
 
int main()  
{  
    stringstream strStream;  
    int a = 100;  
    float f = 23.5566;  
 
    strStream << a << "----"<< f ;  
    string s = strStream.str();  
    cout << s << endl;  
 
    system("pause");  
    return 0;  
}  

输出:

100----23.5566  
请按任意键继续. . .

四、其它

1.sprintf可能引起缓冲区溢出,可以考虑使用 snprintf 或者非标准的 asprintf

2.如果是mfc程序,可以使用 CString::Format

3.如果使用boost,则可以直接使用: string s = boost::lexical_cast <string>(a);

4.atoi 也是不可移植的。

五、其它NB方法

//-----------------------------------------------------------------------------------

// 参考引用 :

// http://baike.baidu.com/view/982195.htm?fr=ala0_1_1

// http://baike.baidu.com/view/1295144.htm?fr=ala0_1

// http://pppboy.blog.163.com/blog/static/3020379620085511954382/

//-----------------------------------------------------------------------------------

 

2. string to int

//第一种方法

const char* str = "123";
int i;
if(sscanf(str, "%d", &i) == EOF )
{   /* error */}

//第二种方法----C++ with standard library stringstream:

int str2int (const string &str)
{
   stringstream ss(str);
   int num;
   if((ss >> num).fail())
   {       //ERROR  
   }
   return num;
}

//第三种方法----With boost library:

#include <boost/lexical_cast.hpp>
#include <string>
try{   
   std::string str = "123";   
   int number = boost::lexical_cast< int >( str );
}catch( const boost::bad_lexical_cast & )
{    // Error
}

 

=============My Test========================


#include "stdafx.h"
#include <cstdio>
#include <iostream>
#include <strstream>
#include <string>
#include <sstream>

using namespace std;

template<class NumType>
bool ConvetStringToNumber(const string& str, NumType& num)
{
stringstream strStream(str);

if((strStream>>num).fail())
{
   cout<<"Sorry, convert failed!"<<endl;
   return false;
}
return true;
}

template<class NumType>
bool ConvetNumberToString(const NumType& num, string& str)
{
stringstream strStream;
strStream<<num;
strStream>>str;   //str = strStream.str(); is ok too.
return true;
}

int _tmain(int argc, _TCHAR* argv[])
{
string strNum = "22.56";
float fNum;
if(ConvetStringToNumber(strNum, fNum))
{
   cout<<"fNum = "<<fNum<<endl;
}

double dNum;
if(ConvetStringToNumber(strNum, dNum))
{
   cout<<"dNum = "<<dNum<<endl;
}

int iNum;
if(ConvetStringToNumber(strNum, iNum))
{
   cout<<"iNum = "<<iNum<<endl;
}

string aa="abc";
if(ConvetStringToNumber(aa, iNum))
{
   cout<<"iNum = "<<iNum<<endl;
}

string str;
ConvetNumberToString(fNum, str);
cout<<"str from fNum = "<<str<<endl;
ConvetNumberToString(dNum, str);
cout<<"str from dNum = "<<str<<endl;
ConvetNumberToString(iNum, str);
cout<<"str from iNum = "<<str<<endl;


char c;
cin>>c;
return 0;
}

Output is :

fNum = 22.56
dNum = 22.56
iNum = 22
Sorry, convert failed!
str from fNum = 22.56
str from dNum = 22.56
str from iNum = 22

目录
相关文章
|
26天前
|
C语言 C++ 容器
【c++丨STL】string模拟实现(附源码)
本文详细介绍了如何模拟实现C++ STL中的`string`类,包括其构造函数、拷贝构造、赋值重载、析构函数等基本功能,以及字符串的插入、删除、查找、比较等操作。文章还展示了如何实现输入输出流操作符,使自定义的`string`类能够方便地与`cin`和`cout`配合使用。通过这些实现,读者不仅能加深对`string`类的理解,还能提升对C++编程技巧的掌握。
55 5
|
26天前
|
存储 编译器 C语言
【c++丨STL】string类的使用
本文介绍了C++中`string`类的基本概念及其主要接口。`string`类在C++标准库中扮演着重要角色,它提供了比C语言中字符串处理函数更丰富、安全和便捷的功能。文章详细讲解了`string`类的构造函数、赋值运算符、容量管理接口、元素访问及遍历方法、字符串修改操作、字符串运算接口、常量成员和非成员函数等内容。通过实例演示了如何使用这些接口进行字符串的创建、修改、查找和比较等操作,帮助读者更好地理解和掌握`string`类的应用。
42 2
|
6天前
|
存储 对象存储 C++
C++ 中 std::array<int, array_size> 与 std::vector<int> 的深入对比
本文深入对比了 C++ 标准库中的 `std::array` 和 `std::vector`,从内存管理、性能、功能特性、使用场景等方面详细分析了两者的差异。`std::array` 适合固定大小的数据和高性能需求,而 `std::vector` 则提供了动态调整大小的灵活性,适用于数据量不确定或需要频繁操作的场景。选择合适的容器可以提高代码的效率和可靠性。
25 0
|
2月前
|
C++ 容器
|
2月前
|
存储 安全 C++
【C++打怪之路Lv8】-- string类
【C++打怪之路Lv8】-- string类
26 1
|
2月前
|
C++ 容器
|
2月前
|
C++ 容器
|
2月前
|
存储 C++ 容器
|
2月前
|
安全 C语言 C++
【C++篇】探寻C++ STL之美:从string类的基础到高级操作的全面解析
【C++篇】探寻C++ STL之美:从string类的基础到高级操作的全面解析
47 4
|
2月前
|
存储 编译器 程序员
【C++篇】手撕 C++ string 类:从零实现到深入剖析的模拟之路
【C++篇】手撕 C++ string 类:从零实现到深入剖析的模拟之路
76 2