- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我正在为学校学习 C,其中一项作业是创建数据库。现在我试图将我给它的一些输入添加到列表中,但我不断收到段错误。我做错了什么?
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
struct carinfo_t {
char* carbrand;
char* carmodel;
int caryear;
float carvalue;
struct carinfo_t * next;
};
struct carinfo_t * carbase;
struct carinfo_t * tempcar;
struct carinfo_t * tempcar2;
struct carinfo_t * tempprint;
void freeCarinfo(struct carinfo_t * carinfo){
free(carinfo->carbrand);
free(carinfo->carmodel);
free(carinfo);
}
struct carinfo_t * createCarinfo(char *carbrand, char *carmodel, int caryear, float carvalue){
struct carinfo_t * newcar;
newcar = (struct carinfo_t *)malloc(sizeof (struct carinfo_t));
newcar->carbrand=(char *)malloc(sizeof(char)*(strlen(carbrand) + 1));
strcpy(newcar->carbrand, carbrand);
newcar->carmodel=(char *)malloc(sizeof(char)*(strlen(carmodel) + 1));
strcpy(newcar->carmodel, carmodel);
newcar->caryear=caryear;
newcar->carvalue=carvalue;
newcar->next= NULL;
return newcar;
}
struct carinfo_t * addCarinfo(struct carinfo_t *carbase, struct carinfo_t *newcar){
if(carbase=NULL){
carbase = newcar;
return carbase;
}
else{
tempcar2->next=carbase;
carbase=tempcar2;
return carbase;
}
}
void printCarbase(struct carinfo_t *carbase){
struct carinfo_t *tempprint = carbase;
if (carbase == NULL){
printf("The database contains no cars\n");
}
else{
while (tempprint != NULL){
printf("Car:\n");
printf("- brand: %s\n", carbase->carbrand);
printf("- model: %s\n", carbase->carmodel);
printf("- year: %d\n", carbase->caryear);
printf("- value: %7.2f\n", carbase->carvalue);
tempprint = tempprint->next;
}
}
}
void main(void){
struct carinfo_t * carbase;
carbase = NULL;
struct carinfo_t * tempcar;
tempcar = createCarinfo("Opel", "Manta", 1965, 20000);
struct carinfo_t * tempcar2 = createCarinfo("Ford", "Focus", 1999, 350.25);
addCarinfo(carbase, tempcar);
}
此外,如果您发现任何改进我的代码的方法,请告诉我,我是编程的新手,我希望能够正确地做到这一点。
编辑:感谢所有回复的人,我弄清楚了如何使用 GDB。现在原来的问题已经解决了,我得到了同样的错误,但这次似乎是“tempcar2”的问题:
Program received signal SIGSEGV, Segmentation fault.
0x000000000040072a in addCarinfo (carbase=0x602010, newcar=0x602080)
at database.c:56
56 tempcar2 = tempcar2->next;
(gdb) bt
#0 0x000000000040072a in addCarinfo (carbase=0x602010, newcar=0x602080)
at database.c:56
#1 0x0000000000400869 in main () at database.c:98
最佳答案
代码中的一些问题:
tempcar2
,它是全局的)=
而不是 ==
运算符完成的carbase
而不是 tempprint
malloc
返回被强制转换,it should not 编译器可能已经检测到一些问题:打开编译器警告(-Wall
对于大多数编译器)
当你的代码编译时带有警告,你的问题就会暴露出来:
.code.tio.c: In function ‘addCarinfo’:
.code.tio.c:46:8: warning: suggest parentheses around assignment used as truth value [-Wparentheses]
if(carbase=NULL){
^~~~~~~
.code.tio.c: At top level:
.code.tio.c:81:6: warning: return type of ‘main’ is not ‘int’ [-Wmain]
void main(void){
^~~~
.code.tio.c: In function ‘main’:
.code.tio.c:88:24: warning: unused variable ‘tempcar2’ [-Wunused-variable]
struct carinfo_t * tempcar2 = createCarinfo("Ford", "Focus", 1999, 350.25);
^~~~~~~~
更正后的版本可能是:
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
struct carinfo_t
{
char* carbrand;
char* carmodel;
int caryear;
float carvalue;
struct carinfo_t * next;
};
void freeCarinfo(struct carinfo_t * carinfo)
{
free(carinfo->carbrand);
free(carinfo->carmodel);
free(carinfo);
}
struct carinfo_t * createCarinfo(char *carbrand, char *carmodel, int caryear, float carvalue)
{
struct carinfo_t * newcar;
/* malloc cast is not recommender */
newcar = malloc(sizeof (struct carinfo_t));
/* strdup can be used here */
newcar->carbrand = strdup(carbrand);
newcar->carmodel = strdup(carmodel);
newcar->caryear=caryear;
newcar->carvalue=carvalue;
newcar->next= NULL;
return newcar;
}
struct carinfo_t * addCarinfo(struct carinfo_t *carbase, struct carinfo_t *newcar)
{
if(carbase==NULL)
{
carbase = newcar;
return carbase;
}
else
{
/* find for the last element */
struct carinfo_t * tempcar2 = carbase;
while(tempcar2->next)
{
tempcar2 = tempcar2->next;
}
/* add the new car to the list */
tempcar2->next=newcar;
return carbase;
}
}
void printCarbase(struct carinfo_t *carbase)
{
struct carinfo_t *tempprint = carbase;
if (carbase == NULL)
{
printf("The database contains no cars\n");
}
else
{
while (tempprint != NULL)
{
printf("Car:\n");
printf("- brand: %s\n", tempprint->carbrand);
printf("- model: %s\n", tempprint->carmodel);
printf("- year: %d\n", tempprint->caryear);
printf("- value: %7.2f\n", tempprint->carvalue);
tempprint = tempprint->next;
}
}
}
int main(void)
{
struct carinfo_t * carbase;
carbase = NULL;
struct carinfo_t * tempcar;
tempcar = createCarinfo("Opel", "Manta", 1965, 20000);
struct carinfo_t * tempcar2 = createCarinfo("Ford", "Focus", 1999, 350.25);
carbase = addCarinfo(carbase, tempcar);
carbase = addCarinfo(carbase, tempcar2);
printCarbase(carbase);
return 0;
}
这段代码的结果是:
Car:
- brand: Opel
- model: Manta
- year: 1965
- value: 20000.00
Car:
- brand: Ford
- model: Focus
- year: 1999
- value: 350.25
关于c - 制作链表时出现Segmentation fault (core dumped)错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52970014/
我正在研究 MySQL 用户定义函数 (UDF),它基本上是 Windows 系统函数的包装器。我的问题是 UDF 对于某些输入按预期工作,但会导致 mysqld 对于其他输入崩溃。 UDF 本身采用
我在 this 中搜索过官方文档查找python中 json.dump() 和 json.dumps() 之间的区别。很明显,它们与文件写入选项有关。 但是它们之间的详细区别是什么?在什么情况下一个比
以前写的很简单,只有几句话,最近发现本文是本博客阅读量最大的一篇文章,觉得这样有种把人骗进来的感觉,于是又细化了一些。如果还有不好的地方,欢迎指出。 首先说明基本功能: dumps是将dict转
有没有办法在运行 'erl' 时禁用“崩溃转储”和“核心转储”文件的生成? PS:我知道 erl 的“+d”选项,但我想完全禁用崩溃/核心转储的生成。 最佳答案 您还可以将 ERL_CRASH_DUM
这是一个错误吗? >>> import json >>> import cPickle >>> json.dumps(cPickle.dumps(u'å')) Traceback (most rece
我已经开始了解用于对象序列化和反序列化的pickle模块了。 我知道pickle.dump是用来将代码存储为字节流(序列化),而pickle.load本质上是相反的,转成流字节返回到 python 对
我有一个这种格式的字符串, d = {'details': {'hawk_branch': {'tandem': ['4210bnd72']}, 'uclif_branch': {'tandem':
下面是我的python代码 r = requests.get("https://www.googleapis.com/youtube/v3/search?part=snippet&maxResults
我正在使用 PigLatin,使用 grunt,每次我“转储”东西时,我的控制台都会被诸如此类、诸如此类的非信息所破坏,有没有办法抑制这一切? grunt> A = LOAD 'testingData
我正在尝试将 mongodump 编辑的一组 .bson 文件 mongorestore 到位于 docker 中的 mongo 数据库,在我只有 SSH 访问权限的 Ubuntu 实例上。 我有一个
我正在尝试使用语音发送文本 watson api,但是当我设置 interim_results = True 时,我收到了值错误。请帮助我:) with open(join(dirname(__fil
鉴于 dump.rdb(或 .json 格式)文件中现有 redis 数据库的快照,我想在我自己的机器上恢复此数据以在其上运行一些测试。 任何有关如何执行此操作的指示都将不胜感激。 我尝试解析 dum
我对 Laravel 4 和 Composer 还是很陌生。当我做 Laravel 4 教程时,我无法理解这两个命令之间的区别; php artisan dump-autoload 和 compose
之间有区别吗 object = {1:"one", 2:"two", 3:"three"} file.write(json.dumps(object)) 和 json.dump(object) .如果
导出/导入整个模式的旧方法: exp user/pwdp@server FILE=export.dmp OWNER=user ROWS=Y imp newuser/pwd@server FULL=
我有一堆需要恢复的 mongo 数据库。我使用 mongodump 获取备份目录,其中包括其中的集合。像这样: |- mydir |-- db1 |--- collection1 |--- colle
尽管我在 root 下运行 dotnet-dump,并且进程在 root 下运行(请参阅下面的服务描述),但似乎我缺乏一些权限。 我还尝试了 home、var 和 tmp 中的其他目录:所有相同的消息
我正在尝试生成 LLVM IR 代码,作为 Kaleidoscope tutorial 的一部分我已成功完成在同一台机器上,使用这些相同的编译器标志。 我的代码在 clang++ 3.4 中编译没有错
我正在使用 eclipse 开发 Web 应用程序,当我尝试从 eclipse 中在服务器上运行我的应用程序时遇到了问题。 # # A fatal error has been detected by
给定一个任意的 picklable Python 数据结构data,是 with open('a', 'bw') as f: f.write(pickle.dumps(data)) 相当于 w
我是一名优秀的程序员,十分优秀!