- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
所以我有一个作业,其中有一个名为 Song 的结构。通过这个结构,我使用 Song 结构对数组进行动态分配。
所以当我尝试将另一首歌曲添加到我的结构中的数组时,我遇到了这个问题。当使用情况 4 向数组添加另一首歌曲时,它将 struct Song 中的变量值更改为垃圾值。我不知道为什么它会这样做。预期结果应该是数组扩展并将歌曲添加到 aSong 中。使用情况 4 后打印 aSong 数组就是问题开始的地方。
我没有收到编译器错误。该程序只是打印出垃圾值。
这是代码(我知道我可以通过将代码放在函数中使其看起来更好):
#pragma warning(disable : 4996)
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include "lab3.h"
//Global variables
struct Song *aSong;
int howMany = 0;
int menu(struct Song *songs) {
int answer = 0;
printf("Choose from the menu: \n");
printf("1. Song menu.\n");
printf("2. Exit\n");
scanf("%d", &answer);
switch (answer)
{
case 1:
printf("Choose from the menu: \n");
printf("1. Add song. \n");
printf("2. Randomize list.\n");
printf("3. Print list.\n");
printf("4. Add another song.\n");
printf("5. Go back\n");
scanf("%d", &answer);
switch (answer)
{
case 1:
printf("How many songs would you like to add right now?: \n");
scanf("%d", &howMany);
getchar();
aSong = (struct Song *) malloc((sizeof(struct Song) * howMany));
for (int i = 0; i < howMany; i++) {
//Adds songs to the array. Depends on how many the user wants to add
printf("Enter a songname: \n");
fgets(aSong[i].titel, SIZE, stdin);
fflush(stdin);
getchar();
printf("Enter the artist/band: \n");
fgets(aSong[i].artist, SIZE, stdin);
fflush(stdin);
getchar();
printf("Enter which year the song was released: \n");
scanf("%d", &aSong[i].releaseD);
fflush(stdin);
getchar();
}
printf("Music added!\n");
getchar();
menu(&songs);
break;
case 3:
printf("-------------------------------\n");
printf("Songs stored: \n");
//Prints the songs
for (int i = 0; i < howMany; i++) {
printf("\nSong titel: %s Band/Artist: %s Release year: %d\n", aSong[i].titel, aSong[i].artist, aSong[i].releaseD);
}
printf("-------------------------------\n");
menu(&songs);
getchar();
break;
case 4:
//Add another song to the array
printf("Add another song: \n");
struct Song* tmp = (struct Song*)malloc((howMany + 1) * sizeof(struct Song));
//Change the array by increasing the nr of slots
for (int i = 0; i < howMany; i++) {
tmp[i] = aSong[i];
}
//Redirect the pointers so it points to the correct array
free(aSong);
aSong = tmp;
tmp = NULL;
printf("Enter song name: \n");
fgets(aSong[howMany].titel, SIZE, stdin);
getchar();
printf("Enter band/artist name: \n");
fgets(aSong[howMany].artist, SIZE, stdin);
getchar();
printf("Enter the year when the song was released:\n");
//scanf(" %d", &aSong[howMany].releaseD);
fgets(aSong[howMany].artist, SIZE, stdin);
getchar();
printf("Song added!");
printf("-------------------");
howMany++;
free(aSong);
menu(&songs);
break;
case 5:
printf("Exit.");
menu(&songs);
break;
}
case 2:
return 0;
break;
}
}
我的main.c文件只调用menu(&songs)函数。
我正在使用一个菜单系统,允许用户选择他们想要执行的操作。 该系统的基本使用如下:
* You enter the "Add song" menu.
* You choose how many songs you would like to enter
* The user adds the info of the song
* User prints the stored songs with case 3
* User wants to add another song to the array with case 4
* User enters data again to add another song (YOU CAN'T ADD SONGS AGAIN WITH CASE 1, YOU HAVE TO USE CASE 4)
* User wants to print the songs again with the print case 3
* Program prints out trash values and the old songs that printed out nicely before are now trash also.
我似乎无法理解我做错了什么。请有人赐教。
lab3.h 文件的结构:
#ifndef LAB3_H
#define LAB3_H
#define SIZE 80
struct Song
{
char titel[SIZE];
char artist[SIZE];
int releaseD;
};
int menu(struct Song *songs);
#endif // !LAB3_H
编辑
(在 main.c 中,我确实有 _CrtSetDbgFlag(_CRTDBG_ALLOC_MEM_DF | _CRTDBG_LEAK_CHECK_DF); 来查找内存泄漏。)
最佳答案
在情况4的最后有一个调用free(aSong),因此在menu的递归调用中数组的内容丢失了。希望这会有所帮助。
关于C - 动态分配覆盖现有数据?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41921053/
我有一个如下图所示的情节。对于这个情节,我想在情节(右下角或左下角)的某处添加类似的线图。我正在使用的子图的命令是 plot( 1:121, sample(1:121),type='l' ) 它绘制在
我有一个单表数据库,我继承并迁移到 SQL Server,然后通过创建、链接和填充一大堆表示主表中项目的查找类型表来规范化它。我现在想用它们的外键替换原始表中的那些项目。我是不是一直在写一堆查询或 U
我有一个 Web 应用程序,它当前正在从服务器获取 PDF 的 base64 表示。我可以使用 Mozilla 的 pdf.js 在 上显示它并使用下拉菜单切换页面。 根据我所能找到的一切和Can
在 DB2 上运行的 Moodle 2 安装中,删除用户不成功,返回从数据库读取错误: Debug info: [IBM][CLI Driver][DB2/LINUXX8664] SQL0206N "
我在grails项目的RH包中添加了一个名为Authorization的新域类。 然后,我从grails菜单自动生成了 Controller 和 View 。 但是当我尝试输入 Controller
今天,我发现了一个有趣的plunker,经过谷歌大量搜索后一无所获,希望我能在这里找到答案。我只是想要那个笨蛋的副本。我不想使用复制和粘贴技术。有什么方法可以获取已建立的 plunk 的副本吗?我如何
这个问题已经有答案了: 已关闭11 年前。 Possible Duplicate: Migrate normal sqlite3 database to core data? 是否可以将现有的 sql
我正在尝试在我的应用程序上添加启动画面。我干净地构建了程序,但我选择了错误的文件。现在我第二次编辑了 VM 选项并再次干净构建,现在我收到此错误: C:\Users\User\Documents\Ne
我已经查看了很多问题,我不相信这是重复使用单元格的结果,因为新的单元格图像是正确的,但是现有的单元格图像不正确并且曾经是正确的。我会先发布图片,以便更容易理解问题。 我有一个图像单元的 Collect
我在来自 Vaadin 的 ContainerHierarchicalWrapper 的这段代码中有一个非常奇怪的错误: for (Object object : children.keySet())
到目前为止,我正在使用 Globalize用于我的 JavaScript 应用程序的 i18n 和 l10n(使用 jQuery UI 构建)。这行得通,但它将我的代码与另一个特定的库联系在一起。现在
我正在创建一个 JHipster 应用程序,现在确定了 full text search 的必要性.我知道 JHipster 与 Elasticseach 集成,但我在创建项目时没有启用它。有没有一种
我一直在寻找堆栈中的建议,但我仍然不能 100% 确定改进它的最佳方法。我有一个存储大约 130K 条记录的 mysql INNODB“产品”表。杂项产品数据等大约有 80 个字段,然后我们一直在为每
我在一本书上看到,它说:当我们使用另一个初始化新创建的对象时 - 使用复制构造函数创建一个临时对象,然后使用赋值运算符将值复制到新对象! 后来在书中我读到:当使用另一个对象初始化新对象时,编译器创建一
我第一次安装现有的 Django 项目时遇到了启动服务器 python manage.py runserver 的问题 这是我做的 1.克隆仓库, 2.制作虚拟环境 3.pip安装要求.txt 4.生
我有一个网站,还有一个登录表单。我不想使用 PHP 来检查我的 MySQL 数据库,因此我正在寻找一种方法来检查用户凭据以查看是否已有 Linux 用户。我知道 PAM,但我还没有找到任何有关如何从网
我有一个现有的 Umbraco 项目在 IIS 服务器上运行。当我开始这个项目时,我基本上是将 Umbraco 直接安装到服务器上,并通过管理界面进行编码,直到网站启动并上线。 现在,客户想要一些更改
我是 Android 开发新手,目前正在学习一些教程。当我在 Eclipse 中设置一个新的 Android 项目,并选择 Windows -> Android SDK and AVD Manager
我有这个注册页面可以正常工作,但对于电子邮件字段,我需要确保电子邮件正确有效1:正确2 : 有效 为了正确添加电子邮件,我正在使用 Java 脚本验证来维护abc@def.com 很好用 但我的问题是
首先让我说我不熟悉 COM 引用,并且我在 Windows 7 64 位计算机上使用 VS2010。今天早上,我从 TFS 中删除了一个现有项目。然后我尝试构建项目并收到此错误: The type o
我是一名优秀的程序员,十分优秀!