- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我希望用户将信息输入到结构数组中,但却收到 4 个相同类型的错误,即:
request for member 'locName' in something not a structure or union|
request for member 'locDesc' in something not a structure or union|
request for member 'latitude' in something not a structure or union|
request for member 'locName' in something not a structure or union|
行数:
printf("Please enter the name for the location: \n");
scanf("%s\n", &*myArray->locName); //Gets the user input for the Location Name
printf("Now enter the description:");
scanf("%s\n", &*myArray->locDesc); //Gets the user input for the Location Description
printf("Now enter the value for the latitude:");
scanf("%lf\n", &*myArray->latitude); //Gets the user input for the Latitude
printf("Now enter the value for the longitude:");
scanf("%lf\n", &*myArray->longitude); //Gets the user input for the Latitude
有人可以指出我在代码中犯的错误吗? 注意,如果数组已满,我需要resize()数组的大小!
#include <stdio.h>
#include <stdlib.h>
//structure Location
typedef struct Location{
char locName[35];
char locDesc[85];
float latitude;
float longitude;
} LocationArray;
//Menu that receives the user input
//and performs corresponding operations based
//on the menu choice
void printMenu(LocationArray **myArray, int *count, int max){
printf("Hello! Please choose from the menu: ");
printf("\nType 'A' or 'a' for adding additional location to the array");
printf("\nType 'P' or 'p' for printing the current list of locations");
printf("\nType 'Q' or 'q' to quit the program");
char input = 0;
scanf("%c", &input);
//Handles the invalid character input
//exits if the character does not correspond
//to the valid menu option
if(input != 'A' || input != 'a'
|| input != 'P' || input != 'p'
|| input != 'Q' || 'q'){
printf("Invalid character! Try again!");
exit(0);
}
//Calls other functions
//based on the character input
else{
switch(input){
case 'A':
case 'a':
addInfo(*myArray, *count, max); //Calls function that adds more locations into the array
break;
case 'P':
case 'p':
printList(*myArray); //Calls the function that prints the current list of locations
break;
case 'Q':
case 'q':
quitProgram(); //Calls the function that terminates the program
break;
}
}
}
//Adds info into the array of structures
void addInfo(LocationArray **myArray, int *count, int max){
if(*count == max){ // Checks if the array is already full
resizeArray(*myArray, max); //Resizes the array if it's full
}
else{ //Else, a used fills it out
printf("Please enter the name for the location: \n");
scanf("%s\n", &*myArray->locName); //Gets the user input for the Location Name
printf("Now enter the description:");
scanf("%s\n", &*myArray->locDesc); //Gets the user input for the Location Description
printf("Now enter the value for the latitude:");
scanf("%lf\n", &*myArray->latitude); //Gets the user input for the Latitude
printf("Now enter the value for the longitude:");
scanf("%lf\n", &*myArray->longitude); //Gets the user input for the Latitude
*count++; //Increment the count
}
}
//Resizes(doubles) the array size if the max limit is achieved
int resizeArray(LocationArray **myArray, int numberOfLoc){
LocationArray *temp;
temp = (LocationArray*)realloc(*myArray, numberOfLoc*sizeof(LocationArray));
//Checks if the memory heap is exhausted
if(temp == NULL){
printf("The memory heap is exhausted!");
return 0; //returns 0 that represents the heap is exhausted
}
else{
*myArray = temp;
free(myArray);
return 1; //If the heap is not exhausted, then return 1 (success)
}
}
int main()
{
printf("How many locations would you like to be inside the array?\n");
int numberOfLoc = 0; //variable for storing the size of the LocationArray
scanf("%d", &numberOfLoc); //gets the user input and stores in numerOfLoc
LocationArray *myArray; //declares a LocationArray with the size of numberOfLoc
myArray = (LocationArray*)malloc(numberOfLoc*sizeof(LocationArray));
//Print the menu
int count = 0;
printMenu(&myArray, &count, numberOfLoc);
//Free the pointer
free(myArray);
return 0;
}
最佳答案
它是一个 struct 数组,我们需要一个索引来指定您要在 addInfo 中添加的特定结构,查看此摘录中的最后一行,并将 mvArrav[0] 中的 0 替换为 mvArrav[i]其中 i 是索引。您需要修改逻辑以传递索引。
void addInfo(LocationArray **myArray, int *count, int max){
if(*count == max){ // Checks if the array is already full
resizeArray(*myArray, max); //Resizes the array if it's full
}
else{ //Else, a used fills it out
printf("Please enter the name for the location: \n");
scanf("%s\n", myArray[0]->locName); //Gets the user input for the Loca
关于c - 请求非结构或 union 中的成员 'latitude',我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33336902/
自从我的问题here无法自信地回答,我在这里再次询问,希望有人确切知道: 指向 union 的指针和包含指向其元素的指针的 union 之间有什么区别(除了语法之外)吗? this中生成的程序集示例是
在 C 语言中,是否可以在另一个 union 体中定义一个 union 体?如果不是,为什么不可能?或者如果可以,可以在哪里使用? 最佳答案 假设您要定义: union myun { int x;
在 C 中,是否可以在另一个 union 中定义一个 union ?如果不是,为什么不可能?或者如果是,它可以在哪里使用? 最佳答案 假设你想定义: union myun { int x; s
我正在阅读一些代码并发现如下内容: typedef union { int int32; int boolean; time_t date; char *string;
我正在学习Lua,我更愿意使用冒号(:)作为方法。不幸的是,它并非在所有地方都有效。看我的代码: 设置= {} 本地mt = {} 函数Set:new(m) 本地集= {} setmetatable(
我遇到了一些性能问题,我有如下查询: SELECT * FROM Foo UNION SELECT * FROM Boo UNION SELECT * FROM Koo 我确信 Koo 不会返回任何重
This question already has answers here: C++ Structure Initialization (16个答案) 上个月关闭。 我正在尝试将一些用于嵌入式目标的
UNION 和 UNION ALL 有什么区别? 最佳答案 UNION 删除重复记录(结果中的所有列都相同),UNION ALL 则不会。 使用 UNION 而不是 UNION ALL 时会影响性能,
我想在两个表上使用联合运算符。我希望结果集消除由联合创建的重复值,但不消除表中预先存在的重复值。考虑这段代码... select b from (values (1), (2), (2
我知道 UNION 会删除重复项,但即使没有重复项也会更改结果顺序。 我有两个 select 语句,任何地方都没有 order by 语句 我想将它们合并或不合并(全部) 即 SELECT A UNI
基本上,我有一个 struct foo { /* variable denoting active member of union */ enum whichmembe
我有一个大规模查询,用于对许多表(每个表有数千行)执行 UNION ALL,然后在返回之前输出到临时表。 旧形式: SELECT * FROM (SELECT `a` AS `Human rea
UNION 和 UNION ALL 有什么区别? 最佳答案 UNION 删除重复记录(结果中的所有列都相同),UNION ALL 则不会。 使用 UNION 而不是 UNION ALL 时会影响性能,
如果我有两个 union 行结构: struct A { A() {} ~A() {} union { vector vi; vector db
考虑下面的代码,我已经写了: #include #include union myAccess { uint16_t access16; struct { uint
我想弄清楚你从 C99 中对齐变量的地役权中得到了什么: Exception to strict aliasing rule in C from 6.5.2.3 Structure and union
我正在通过 UNION 或 UNION ALL 从多个表中选择一列外键。 当重复无关紧要时,通常建议使用 UNION ALL 而不是 UNION 来解决性能问题。但是,在我的调用 PHP 脚本中,循环
在 C++ 中,union 可以包含静态成员,在类的情况下,这些成员属于一个类,因此对所有对象都是通用的。 union U { long l; int i; static long
任何人都可以提及普通和匿名 union (或结构)之间的区别吗?我刚找到一个: 不能在匿名 union 中定义函数。 最佳答案 您不需要点运算符“.”访问匿名 union 元素。 #include
我可能把这个复杂化了.. 我正在尝试在 Arduino 上用 C 语言为嵌入式应用程序制作一个相当可重用的分层菜单系统。我有结构来表示不同类型的菜单项,包括那些子菜单,以及这些菜单项的 union 是
我是一名优秀的程序员,十分优秀!