- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
这似乎是一个非常具体的问题,我很难找到任何类型的答案。
我正在尝试使用 typedef 结构来存储用户信息。我使用 cust[x].firstName 等格式来区分一个客户和另一个客户。因为我在头文件中定义了这个结构,所以我的理解是通过改变函数内部结构的字段,这些变化应该反射(reflect)在 main 中。然而,情况似乎并非如此。
typedef struct
{
char firstName[99];
char lastName[99];
int numOrders;
char orders[99][99];
float orderPrice[99][99];
float orderNum[99][99];
}Info;
int infoGet(FILE*,int);
int main()
{
int orderNum,i;
FILE*input = fopen("input.txt","r");
FILE*output = fopen("invoices.txt","w+");
fscanf(input,"%d",&orderNum);
Info cust[10];
infoGet(input,orderNum)
printf("%s %.2f %.2f\n",cust[0].orders,cust[0].orderPrice[1][0],cust[0].orderNum[1][0]);
}
int infoGet(FILE*input,int orderNum)
{
int i,j;
char space;
Info cust[10];
for(i = 0;i < orderNum;i++)
{
fscanf(input,"%s %s",cust[i].firstName,&cust[i].lastName);
printf("%s %s\n",cust[i].firstName,cust[i].lastName);
fscanf(input,"%d",&cust[i].numOrders);
printf("This person has %d items to order\n",cust[i].numOrders);
for(j=0;j < cust[i].numOrders;j++)
{
fscanf(input,"%s %f %f",cust[i].orders,&cust[i].orderPrice[1][j],&cust[i].orderNum[1][j]);
printf("%s %.2f %.2f\n",cust[i].orders,cust[i].orderPrice[1][j],cust[i].orderNum[1][j]);
}
}
}
main 中的最后一个 printf 语句应该打印函数中最后一个 fscanf 扫描的内容,但事实并非如此。我需要将结构传递给函数吗?或者我还需要做些什么来保持这个结构不变?
最佳答案
Since I'm defining this struct in the header, it's my understanding that by altering the fields of the struct inside a function, these changes should be reflected in main.
这是误会。 header 中的定义定义了一个类型。这不是可以修改的对象,而是创建和使用该类型实例的所有代码所需的定义。这就是 main()
和 infoGet()
中发生的情况,您可以在其中使用以下语句实例化 Info
对象的数组:
Info cust[10]; // instantiates an array of 10 Info objects
现在,关于实际问题:您的函数 infoGet
有自己的 local 数组 Info cust[10]
。在函数中修改它在函数外没有影响。您需要将数组从 main
传递到函数中。例如,
int infoGet(FILE*input, Info* cust, int orderNum)
{
int i,j;
char space;
for(i = 0;i < orderNum;i++)
{
....
}
和
int main()
{
int orderNum,i;
FILE*input = fopen("input.txt","r");
FILE*output = fopen("invoices.txt","w+");
fscanf(input,"%d",&orderNum);
Info cust[10]; // Careful! What if orderNum is > 10?
infoGet(input, cust, orderNum)
请注意,您应该检查orderNum
是否不超过10
,或者分配一个可变长度的数组:
Info cust[orderNum];
关于c - 当使用数组标识单个结构时,使用函数更改 typedef 字段,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29839693/
我想“创建”一个类型“my_type”,它是一个 std_logic_vector(...),就像这个 C/VHDL 假代码: typedef std_logic_vector(CONSTANT do
这个问题不太可能帮助任何 future 的访问者;它只与一个小的地理区域、一个特定的时间点或一个非常狭窄的情况有关,这些情况并不普遍适用于互联网的全局受众。为了帮助使这个问题更广泛地适用,visit
我已阅读说明,我明白它是一个函数类型别名。 typedef 或函数类型别名为函数类型提供一个名称,您可以在声明字段和返回类型时使用该名称。当将函数类型分配给变量时,typedef 会保留类型信息。 h
Vala 是否有能力做一些类似于 C 中的 typedef 或 D 中的 alias 的事情?我检查了它的零星文档,但找不到与此相关的任何内容。 最佳答案 不是 typedef 本身,但您可以扩展大多
我对这段代码有一些问题: typedef struct Product { char product_code[5]; int sells; int sells_quantit
我对书中的代码有疑问: const int SQUARE_ARRAY_SIZE = 4; const int SQUARE_INFO_SIZE = 4; typedef Square SquareAr
typedef经常像这样工作:typedef .但是函数指针的 typedef 似乎有不同的结构:typedef int (*fn)(char *, char *); - 没有类型别名,只有一个函
我被分配去处理一些代码,但我事先得到了一部分。它包括这部分代码: typedef int ElementType; struct Node; typedef struct Node *PtrToNod
我正在尝试创建通用容器包装器。 template class ContainerWrapper { public: using allocator_type = typename type::al
抱歉,标题太长了。 我在类列表中有一个 typedef: template class List { // Think of a class Iter_ with ListElem *pCu
我想制作一个 typedef,它依赖于模板参数中 typedef 的存在: struct foo { using MyType = int; }; template struct bar {
出于教育目的,我正在查看 Eigen 源代码。我注意到对于每个具体类模板 X在层次结构中,有一个 internal::traits定义。一个典型的例子可以在 Matrix.h 中找到: namespa
假设我有三个文件 //first.h typedef typename std::map MapVertexVd_t; //the graph class and ... //other useful
如果我需要 Swift 中的自定义类型,我可以 typedef,我该怎么做? (类似于闭包语法 typedef) 最佳答案 关键字typealias用于代替typedef: typealias Cus
由于标题可能看起来很困惑,让我举个例子: typedef bool foo[2]; typedef foo bar[4]; bar what_am_i; 所以,我认为 what_am_i 是 [4][
我想声明一个 typedef,像这样: 指向另一个 typedef 的任何数组的指针。 例如: 类型定义 1: typedef struct { int a; }structA_t1; 类型定
要将 my_int 声明为 int 的类型别名,我们可以这样写: typedef int my_int; // (1) 奇怪的是,以下内容似乎也定义了 int 别名: int typedef my
如何在其他 typedef struct 中声明 typedef struct? typedef struct { char* type; char* destination;
我正在尝试将 malloc'd ptr 保存在全局 ptr 中,以便我可以在另一个函数中使用它。理想情况下,我希望在全局范围内有一个更智能的数据结构,但现在我只是想让全局 ptr 工作。 在我的 lw
MachineState machine; ControlSignals theControls = machine.control_signals; //Why is this giving an
我是一名优秀的程序员,十分优秀!