- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我刚刚开始学习 C 语言,我需要一些程序方面的帮助。这是代码。
问题:
#include <stdio.h> #include <string.h> #include <stdlib.h>
#define INPUT_LENGTH 128
#define FIELD_LENGTH 30
#define NUM_FIELDS 9
int main()
{
FILE *data=NULL;
char input[INPUT_LENGTH];
char customerData[NUM_FIELDS][FIELD_LENGTH];
int element=0;
char *next;
char ch;
data= fopen("data.txt","r");
if(data!=NULL)
{
//token=strtok(input,"|");
/*while loop will go through line by line and stored it in an input array*/
while(fgets(input,INPUT_LENGTH,data)!= NULL)
{
next=strtok(input,"|");
while(next!=NULL)
{
//ch=getchar()
//>probably a get char for ch
strcpy(next,customerData[element][strlen(next)]);
/*need to put the values into customer data one by one*/
printf("%s\n",next);
//element+=1;
next=strtok(NULL,"|");
}
//element=0;
}
printf("program is done\n");
}
fclose(data);
return 0;
}
最佳答案
一般来说,“帮助我编写代码”问题在 Stack Overflow 上是偏离主题的。为了使问题切题,我将只关注如何访问 2D 字符数组的问题。
是的,这是一个二维字符数组。或者,换句话说,它是一个包含 NUM_FIELDS
元素的数组,其中数组的每个元素都是一个包含 FIELD_LENGTH
元素的 char 数组。
将数据插入二维字符数组的方法有很多,但我最常遇到的可能有两种。您选择使用哪一个取决于您如何看待这个数组。
将此变量视为一个二维字符数组 - 您可以访问的元素网格。在这里,您可以简单地使用普通赋值运算符输入值。您需要确保索引在范围内,否则您将开始访问无效内存。
//Set a known element that's definitely in range
customerData[1][2] = 'A';
//Loop through all the elements
for(int ii = 0; ii < NUM_FIELDS; ii++)
{
for (int jj = 0; jj < FIELD_LENGTH; jj++)
{
customerData[i][j] = 'B';
}
}
//Set an element from variables
char nextInput = getNextCharFromInput();
if(x < NUM_FIELD && y < FIELD_LENGTH)
{
customerData[x][y] = nextInput;
}
//Bad. This could corrupt memory
customerData[100][60] = 'X';
//Risky without check. How do you know x and y are in range?
cusomterData[x][y] = 'X';
您当然可以通过一次将这些元素分配给字符来编写代码。然而,您的程序的更广泛背景对我来说意味着下一个选择更好。
在 C 语言中,“字符串”只是一个字符数组。因此,查看此变量的另一种方法(也是对该程序最有意义的方法)是将其视为长度为 NUM_FIELDS 的一维数组,其中每个元素都是长度为 FIELD_LENGTH 的字符串。
这样看来,你就可以开始使用C字符串函数将数据输入到数组中,而不需要一个字符一个字符地处理。和以前一样,您仍然需要注意长度,以免超出字符串的末尾。
另请注意,所有数组 decay转换为指针,因此 char*
也是一个字符串(只是长度未知)。
//Set a specific field to a known string, which is short enough to fit
strcpy(customerData[2], "date");
//Loop through all fields and wipe their data
for(int ii = 0; ii < NUM_FIELDS; ii++)
{
memset(customerData[ii], 0, FIELD_LENGTH);
}
//Set field based on variables
if(x < NUM_FIELDS)
{
//Will truncate next if it is too long
strncpy(customerData[x], next, FIELD_LENGTH);
//Will not input anything if field is too long
if(strlen(next) < FIELD_LENGTH)
{
strcpy(customerData[x], next);
}
}
//Bad. Could corrupt memory
strcpy(customerData[100], "date");
strcpy(customerData[1], "this string is definitely much longer than FIELD_LENGTH");
//Risky. Without a check, how do you know either variable in in range?
strcpy(customerData[x], next);
getchar和 fgetC两者都分别从标准输出和文件中处理读取字符,因此不能用于将数据放入变量中。 putchar确实处理将字符放入事物中,但仅限标准输出,因此不能在此处使用。
关于c - 如何在 C 中将 token 字符中的值设置为名为 customerData[][] 的数组?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59795311/
我是一名优秀的程序员,十分优秀!