问题标签 [sigabrt]

For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.

0 投票
4 回答
8944 浏览

c++ - 损坏的双链表:0x0804d0c0 (C++)?

注意:我以前从未遇到过这种规模的问题,并且真的不知道如何布置它,如果我布置错了,请解释我应该如何布置它。如果您不能或不会帮助该程序,我很高兴了解这个问题。

我一直在编写一段代码来练习面向对象的编程,但是我遇到了一个我以前从未见过的错误(我只做了几个月,没有太多时间学习,因为我的时间浪费在义务教育上)。内核本身(显然)用我的代码产生了这个错误。但是运行 gdb(带有调试符号)并没有让我知道行号。放入 printf 语句表明即使不再满足条件,它也在循环 while 循环?这对我来说似乎很奇怪,因为它似乎没有满足条件,但它一直在循环。发生这种情况时它通过错误(我认为)的原因是因为在“堆栈”类中的某个地方它为整数数组重新分配了负大小的内存 - 虽然,当我向 Stack::reloc 添加一个 if 语句以防止它重新分配负数组大小时,它仍然会出现错误。往下看,它显示了其他几条信息,(引用 gdb):

程序收到信号 SIGABRT,已中止。__kernel_vsyscall() 中的 0x0012d422

我并没有真正从 SIGABRT 的 wiki 页面中学到很多东西,而且我认为十六进制数字对我没有任何意义。这是我的代码,分为两个类和主要的:

标题:

类堆栈:

};

类宇宙:

主要功能:

GDB 运行结果(带调试符号):

0 投票
2 回答
566 浏览

iphone - 启动时的 SIGABRT

我只是不明白这一点。我发现的只是一些论坛帖子,上面写着“我不知道如何解决这个问题”。我开始了一个简单的视图。然后我添加了 ASIHTTPRequest 以使用对 php 脚本的请求调用与数据库进行通信。我必须在它编译之前添加 Reachability.h。当我真正尝试运行它时,我得到的只是模拟器上的一个空白屏幕,以及主要的 XCode 中的 SIGABRT 错误。

这是输出:

0 投票
2 回答
16581 浏览

ios - setObject:ForKey: crash?

I am getting this crash in the console:

The only line that I think would fire at the time it crashes that relates to this crash is this line:

Does anything look wrong here? What could be the problem?

Edit1: It is crashing when I do this to call a method: Code:

This is the showAchievements method: Code:

Can this crash be because I have not properly hooked everything up in iTC? I am definitely sure it crashes in that method and I do not know why.

Does anyone have any ideas?

Edit2: I am getting down to it here, in my console, right before it crashes it has a line saying Missed Method. So I search for where this NSLog is and it is in GameCenterManager.m, a file necessary for Game Center I think. Here is the method:

So from that code do you see whats wrong?

Thanks!

0 投票
5 回答
2044 浏览

iphone - Getting SIGABRT for a reason unknown to me

I am developing an iOS application (http://affogato.visioa.com/) that implements a tab bar controller, navigation controller and a tableview controller and each time I run my application, I get: "Thread 1: Program recieved signal: "SIGABRT". Could anyone shed any light as to why I am getting this and how to correct it?

Below is the console:

0 投票
1 回答
1714 浏览

objective-c - Objective-C Thread 1:Program received signal: "SIGABRT"

I have an error in this line.

I'm using Xcode 4.1 and reading Appress Book "Beginning iPhone 4 Development" Chapter 4.

Regards, Herman

0 投票
3 回答
327 浏览

iphone - 由于此代码而收到 SIGABRT... 为什么?

我正在尝试将选项卡栏控制器、导航控制器和表格视图实现到我正在处理的应用程序中,但每次尝试运行它时都会收到 SIGABRT 错误,我不知道为什么,这让我很困惑。以下是控制台引用的代码(我相信):

}

...下面是控制台:

任何帮助将不胜感激。

0 投票
3 回答
489 浏览

ios - NSArray SIGABRT

无论出于何种原因,当我编译它时,我得到一个 SIGABRT 错误。它发生在

线。错误:

2011-08-29 19:26:21.273 xxxxxxxxxxx[1431:b303] 2 个索引 [0, 0]

2011-08-29 19:26:21.274 xxxxxxxxxxxxx[1431:b303]-[__NSCFDictionary objectAtIndex:]:无法识别的选择器发送到实例 0x4ba2370

2011-08-29 19:26:21.277 xxxxxxxxx[1431:b303] *由于未捕获的异常“NSInvalidArgumentException”而终止应用程序,原因:“-[__NSCFDictionary objectAtIndex:]:无法识别的选择器发送到实例 0x4ba2370”终止称为抛出异常

0 投票
2 回答
387 浏览

iphone - 从 plist 文件中读取包含多个字典的多个数组,该字典包含多个数组

大家好,我想将以下 plist 文件读入内存并对结果进行一些计算,plist 文件如下所示,这只是显示结构的一部分:

目前我正在尝试使用以下内容阅读它们:

但我在这条线上得到了一个 SIGABRT

控制台输出的第一行:

任何想法我做错了什么?

0 投票
1 回答
352 浏览

xcode - 在 xCode 4 中重命名项目会导致 SIGABRT

我通过缓慢双击项目名称然后按照说明在 xCode 4 中重命名了一个项目。然后我构建并运行没有错误,但是当我在应用程序模拟器中选择一个弹出框时,会得到一个 SIGABRT。这在原始项目中运行良好。重命名的应用程序的其他部分工作正常。我已经完成了清洁,但没有帮助。

我是否需要手动进行其他更改才能重命名项目?

0 投票
0 回答
134 浏览

xcode4 - NSException error seems to occur randomly

This code was working fine, now for some reason I'm getting an NSException error that's generating a SIGABRT at the following line of code...

Here's the method it's located in...

I'm new at this as you can probably tell. Any ideas as to what's generating the NSException?