C++ 中数串互转、进制转换的类

时间:2022-05-01 19:26:50
 /********************************************************************
created: 2014/03/16 22:56
filename: main.cpp
author: Justme0 (http://blog.csdn.net/justme0) purpose: C++ 中数串互转、进制转换的类
*********************************************************************/ #define _CRT_SECURE_NO_WARNINGS
#include <iostream>
#include <string>
#include <cassert>
using namespace std; /*
** Int 类用于数的进制转换及与字符串互转,目前只支持非负整数
*/
class Int {
public:
/*
** 用数构造,默认构造为0
*/
Int(int i = ) : num(i) {} /*
** 用字符串构造,radix 为字符串中的数的进制,默认十进制
*/
Int(const string &s, int radix = )
: num(strtol(s.c_str(), NULL, radix)) {} /*
** 获取整数值
*/
int to_int() const {
return num;
} /*
** 获取字符串形式,可设定获取值的进制数,默认为十进制
*/
string to_str(int radix = ) const {
char s[]; // int 最大是31个1
return _itoa(num, s, radix);
} private:
int num;
}; int main(int argc, char **argv) {
assert(string("") == Int().to_str());
assert( == Int("", ).to_int());
assert( == Int("").to_int() + Int("").to_int());
assert( == Int(Int().to_str(), ).to_int()); cout << "ok" << endl; system("PAUSE");
return ;
}