gpt4 book ai didi

c++ - 将值分配给文件中的独立字符数组

转载 作者:行者123 更新时间:2023-11-28 07:01:38 25 4
gpt4 key购买 nike

您好,我正在尝试创建一个包含日期信息的独立字符数组,以便稍后可以使用其他变量对其进行排序。数量数组和已售出数组按需工作,但我在第 66 行 (item_date[i]=date;) 中收到以下错误:错误:从 'char*' 到 'char' 的转换无效。有人知道我该如何解决这个问题吗?谢谢

#include <cstdlib>
#include <iostream>
#include <fstream>
#include <string>
#include <cmath>
#include <iomanip>
using namespace std;

#define output_bit 1

struct soldItems{
char date[10];
int idNum;
double quantity;
double sold;

};

int main(int argc, char** argv) {
const int n=1369;
soldItems aItem[n];
char filename[100] = "project.txt";
double *item_quantity=new double[n];
double *item_sold=new double[n];
char *item_date=new char[n];


FILE *fp;
char header[100];

double quantity, sold;
int idNum;
char date[10];

char date_s[10],idNum_s[10], quantity_s[10], sold_s[10];
int i=0;


fp=fopen(filename, "r");



if(!fp)
perror("Double-check your input file");

if(!feof(fp))
{
fscanf(fp, "%s %s %s %s\n", date_s, idNum_s,
quantity_s, sold_s);
}

while(!feof(fp))
{
fscanf(fp, "%s %10d %lf %lf\n",
date, &idNum, &quantity, &sold);


strcpy(aItem[i].date, date);
aItem[i].idNum = idNum;
aItem[i].quantity = quantity;
aItem[i].sold = sold;



item_quantity[i]=quantity;
item_sold[i]=sold;
item_date[i]=date;
i++;
}

fclose(fp);

if (output_bit)
{
cout<<"The item information is written in a structure array: \n"<<endl;
}

return 0;
}

最佳答案

你的问题是 datechar* 类型,而 item_date[i]char 类型>。您正试图将一个字符串加载到一个字符中,这就是您的错误所在。但是,如果您想将 item_date 声明为字符串数组,您应该这样声明:

char **item_date = new char*[n];

这将创建一个包含 n 字符串的数组,每个字符串的长度为 10。如果您需要不同的长度,请将 10 替换为其他内容。

此外,由于您使用 C++ 编程,我建议您使用 C++ 字符串,而不是 C 风格的字符串(字符数组)。

关于c++ - 将值分配给文件中的独立字符数组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22392037/

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