1.自己写一个函数(c/c++)
- #include <stdio.h>
- #include <assert.h>
- /* my string to integer function */
- int myfun(char *str){
- int i = 0,n = 0,flag = 1;
- if(str[0] == '-')
- i = 1;flag = -1;
- for(; str[i] != '/0' ; i++){
- assert(str[i] >= '0' && str[i] <= '9');
- n = str[i] - '0' + n*10;
- }
- return n*flag;
- }
- int main(int argc, char *argv[])
- {
- int a;
- char str[] = "1024";
- a = myfun(str);
- printf("%d/n",a);
- return 0;
- }
2.使用c标准库中的atoi函数(c/c++)
- #include <stdio.h>
- #include <stdlib.h>
- int main(int argc, char *argv[])
- {
- int a;double d;
- char str[] = "1024";
- char strd[] = "3.1415";
- a = atoi(str);d =atof(strd);
- printf("%d/n",a);
- printf("%g/n",d);
- return 0;
- }
- #include <iostream>
- #include <string>
- using namespace std;
- int main(int argc, char *argv[])
- {
- int a;
- string str = "1024";
- a = atoi(str.c_str());
- cout << a <<endl;
- return 0;
- }
其他相关函数还有atof,atol等。
3.使用sscanf函数(c/c++)
- #include <stdio.h>
- int main(int argc, char *argv[])
- {
- int a;double d;
- char str[] = "1024";
- char strd[] = "3.1415";
- sscanf(str,"%d",&a);
- sscanf(strd,"%lf",&d);
- printf("%d/n",a);
- printf("%g/n",d);
- return 0;
- }
4.使用c标准库中的strtol函数(c/c++)
- #include <stdio.h>
- #include <stdlib.h>
- int main(int argc, char *argv[])
- {
- int a,hex_a;double d;
- char str[] = "1024";
- char hex_str[] = "ff";
- char strd[] = "3.1415";
- a = strtol(str,NULL,10);hex_a = strtol(hex_str,NULL,16);
- d =strtod(strd,NULL);
- printf("%d/n",a);
- printf("%d/n",hex_a);
- printf("%g/n",d);
- return 0;
- }
其他相关函数还有strtoul,将字符串转换成无符号的长整型数。
5.使用c++中的字符串流istringstream(c++)
- #include <iostream>
- #include <string>
- #include <sstream>
- using namespace std;
- int main(int argc, char *argv[])
- {
- int a;
- string str = "-1024";
- istringstream issInt(str);
- issInt >> a;
- cout << a <<endl;
- return 0;
- }
不过,GCC(2.95.2)及以前版本并不支持sstream。
6.使用boost库中的lexical_cast函数(c++)
可以到www.boost.org下载最新的boost库,设置IDE的include路径就可以使用大部分boost功能了,具体可以参考http://www.stlchina.org/twiki/bin/view.pl/Main/BoostChina。
- #include <boost/lexical_cast.hpp>
- #include <iostream>
- int main()
- {
- using boost::lexical_cast;
- try{
- int a = lexical_cast<int>("1024");
- //int a = lexical_cast<int>("xxx"); // exception
- double d = lexical_cast<double>("3.14194");
- std::cout<<a<<std::endl;
- std::cout<<d<<std::endl;
- }catch(boost::bad_lexical_cast& e){
- std::cout<<e.what()<<std::endl;
- }
- return 0;
- }
http://blog.csdn.net/alien73/article/details/3477033
相关推荐
在“整形数组与字符数组相互转换”的场景中,主要涉及以下几个关键知识点: 1. 数据类型转换:C/C++中,我们可以使用强制类型转换(static_cast、reinterpret_cast等)将一个类型的变量转换为另一个类型。在本例中...
本文将总结几种不同的方法来实现这一目标。 首先,我们可以使用递归的方式来输出整数的二进制表示。如`BinaryRecursion`函数所示,通过不断将数字右移并取模2,可以得到每一位的二进制值,直到数字变为0。这种方法...
### 使用引用交换两个整型或字符串型 #### 知识点概述 在C++编程语言中,函数参数可以通过值传递、引用传递或者指针传递等方式实现。本文将介绍如何使用引用传递来交换两个整型变量及两个字符串变量,并对代码进行...
在C++中,数组不能直接作为参数传递,因此我们需要将其转换为可序列化的格式,如字符串或字节数组。例如,可以使用JSON格式表示数组,然后通过`send()`函数发送给服务器,服务器端再反序列化为整数数组。另一种方法...
转义字符是特殊字符,用于在字符串中表示特定的控制功能。常见的转义字符包括: - `\n`: 换行 - `\t`: 水平制表符 - `\\`: 反斜杠本身 - `\'`: 单引号 - `\a`: 警报声 - `\b`: 退格 - `\f`: 换页 - `\r`: 回车 - `\...
4. **返回本地时间对象或字符串**:根据需求,转换后的本地时间可以是日期时间对象,也可以是格式化的字符串。 例如,在Python中,你可以创建一个函数`utc_to_local(utc_timestamp, timezone_offset)`,其中`time...
1)C++源代码扫描程序识别C++记号。... C++语言包含了几种类型的记号:标识符,关键字,数(包括整数、浮点数),字符串、注释、特殊符号(分界符)和运算符号等。 (2)打开一个C++源文件,打印出所有以上的记号。
string类型是遇到字符串类问题应该首选的变量,防止了使用char数组时定义数组长度过小导致越界,同时更加直观的将字符串看做了一个对象。 此外,文章还推荐了一些其他的学习资源和方法,例如,看了题目以后,先仔细...
- **计算位数**:提供了几种计算特定值所占位数的方法。 **3. 子程序** 子程序是提高代码复用性和可维护性的关键。 - **间接寻址**:介绍了一种灵活的数据寻址方式。 - **子程序的简单例子**:通过示例程序演示了...
3. string类型是遇到字符串类问题应该首选的变量,区别于字符数组char[],string类型是直接将字符数组封装了进去。 五、机试准备 1. 买一本算法竞赛入门经典。 2. 调整好心态,时刻告诉自己,哪些小错误是自己...
机试中常用的变量类型有 int、double、string、char[] 等,掌握好其中的几种就可以。 9. int 类型: int 类型是最常用的整数类型,对于输入类型是整形的变量,使用 int 来进行定义和读入。 10. double 类型: double...