2016.5.21——atoi()函数的测试

Posted zhuzhu2016

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了2016.5.21——atoi()函数的测试相关的知识,希望对你有一定的参考价值。

对函数atoi()函数的测试:

  atoi()函数将字符串型转换为整型

  代码:

 1 #include "stdafx.h"
 2 #include "iostream"
 3 #include "vector"
 4 //#include <stdlib.h> 
 5 using namespace std;
 6 
 7 int _tmain(int argc, _TCHAR* argv[])
 8 {
 9     char str[] = { "12" };    //这里不能定义成string型,出错:error C2664: “int atoi(const char *)”: 无法将参数 1 从“std::string [1]”转换为“const char *”
10     int m = 0;
11     m = atoi(str)*3;
12     //n = m * 2;
13     cout << m << endl;
14     system("pause");
15     return 0;
16 }

  注意定义字符串型时不能定义成string,而要定义为char型。否则出错:error C2664: “int atoi(const char *)”: 无法将参数 1 从“std::string [1]”转换为“const char *”

  L9char str[] = { "12" }; 不能写成这样char str[] = { "12","45" },出错: error C2078: 初始值设定项太多

  

  碎碎念:

  字符串是双引号"",大括号{}!!!!,python中是单引号‘‘,中括号[]

  注意各种类型,经查提示我无法从XXX型转化为yyy型

以上是关于2016.5.21——atoi()函数的测试的主要内容,如果未能解决你的问题,请参考以下文章

atoi()函数的原理分析和代码实现

有趣的atoi()函数

atoi()函数的实现

了解 atoi() 函数

为啥 atoi 函数不能将 const char * 转换为 int?

C语言atoi()函数(字符串转整数int类型)