gpt4 book ai didi

C++ atoi 获取在程序同一部分创建的其他字符的值

转载 作者:行者123 更新时间:2023-11-28 00:45:49 25 4
gpt4 key购买 nike

我正在尝试将 9 个字符的字符串读入 9 个整数值,并存储在一个数组中(现在我将它们存储在 9 个单独的整数中,一旦它们读入 OK 就会将它们放入数组中)。我采用的一般方法:con 字符串,将其拆分为 9 个字符值,将 (atoi) 每个转换为一个整数并存储为 9 个整数,将整数放入数组中。奇怪的是,虽然单个值毫无问题地拆分为单个字符,但以某种方式“看到”其他相邻值(根本不包含在该字符中!)并将它们向后转换。

示例代码:

countrows = 1;
countcols = 1;
cout << endl << "Enter values for boxes in row " << countrows << ", enter 0 for open boxes (enter 9 numbers, with no spaces or delimiters): ";
string inputline;
cin >> inputline;
char col1, col2, col3, col4, col5, col6, col7, col8, col9;
int int1, int2, int3, int4, int5, int6, int7, int8, int9;
col1 = inputline[0];
col2 = inputline[1];
col3 = inputline[2];
col4 = inputline[3];
col5 = inputline[4];
col6 = inputline[5];
col7 = inputline[6];
col8 = inputline[7];
col9 = inputline[8];
int1 = atoi(&col1);
int2 = atoi(&col2);
int3 = atoi(&col3);
int4 = atoi(&col4);
int5 = atoi(&col5);
int6 = atoi(&col6);
int7 = atoi(&col7);
int8 = atoi(&col8);
int9 = atoi(&col9);
cout << "inputline: " << inputline << endl;
cout << "col1: " << col1 << " col2: " << col2 << " col3: " << col3 << endl; //debug line
cout << "int1: " << int1 << " int2: " << int2 << " int3: " << int3 << endl; //debug line

结果是:

为第 1 行的框输入值,为空框输入 0(输入 9 个数字,没有空格或分隔符):456123789输入线:456123789col1: 4 col2: 5 col3: 6int1: 4 int2: 54 int3: 654

为什么int包含5和int3 65(应该是int1:4 int2:5 int3:6)

最佳答案

atoi 用于将以 NULL 结尾的字符串 (char*) 而非字符转换为整数。您的 col1col2 不是以 NULL 结尾的字符串,并且 atoi 将读取内存直到它到达 NULL 值(这将结束字符串)。

如果您想将 ASCII 数字转换为数字,可以使用简单的数学运算:

int1 = col1 - '0';

col1: 4 col2: 5 col3: 6 int1: 4 int2: 54 int3: 654

所有这些值都存储在堆栈中。让我们假设堆栈当前为空(它不是,还有其他局部变量、返回地址等),并且顶部元素为 0:

 STACK
----------
0 <- top

现在,您的col1col2col3 被放置在堆栈上,正如您声明的那样:

 STACK
----------
0
col1
col2
col3

并且,一旦您对它们赋值,您将得到下图:

 STACK
----------
0
'4'
'5'
'6'

当您调用 atoi(col1) 时,它将读取 '4',然后是 0,这将终止字符串,并且它将仅解析 ASCII '4'。当您调用 atoi(col2) 时,它将读取 '5''4',然后是 0 , 所以输入字符串将是 "54" 所以它会准确地解析。所有其他 col 变量都会发生类似情况。

请注意,以相反顺序读取堆栈元素并没有什么神奇之处——实际上,您正在以正序读取内存——因为在我(可能还有你)的机器上,堆栈是向下增长的。在某些机器上,情况并非如此(查看 this link 了解更多详细信息),您会得到 456... for col1 或者可能只是零(atoi 如果您传递非数字字符串作为参数,将返回零。

关于C++ atoi 获取在程序同一部分创建的其他字符的值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16286502/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com