有一個程序編譯,但然後退出,返回上述錯誤信息。線程1:EXC_BAD_ACCESS(代碼= 13,地址= 0x0)
這裏是0 objc_msgSend日誌;都談到了線出現錯誤消息上:
libobjc.A.dylib`objc_msgSend:
0x7fff8c9b7e80: testq %rdi, %rdi
0x7fff8c9b7e83: je 0x00007fff8c9b7eb0 ; objc_msgSend + 48
0x7fff8c9b7e85: testb $1, %dil
0x7fff8c9b7e89: jne 0x00007fff8c9b7ec7 ; objc_msgSend + 71
0x7fff8c9b7e8c: movq (%rdi), %r11
0x7fff8c9b7e8f: pushq %rax
0x7fff8c9b7e90: movq 16(%r11), %r10
0x7fff8c9b7e94: movl %esi, %eax
0x7fff8c9b7e96: andl (%r10), %eax // error message arrow appears on this line
0x7fff8c9b7e99: movq 16(%r10,%rax,8), %r11
0x7fff8c9b7e9e: incl %eax
0x7fff8c9b7ea0: testq %r11, %r11
0x7fff8c9b7ea3: je 0x00007fff8c9b7edb ; objc_msgSend + 91
0x7fff8c9b7ea5: cmpq (%r11), %rsi
0x7fff8c9b7ea8: jne 0x00007fff8c9b7e96 ; objc_msgSend + 22
0x7fff8c9b7eaa: popq %rax
// Rest left out; no error messages
的main.m:
#import <Foundation/Foundation.h>
#import "Budget.h"
#import "Transaction.h"
#import "CashTransaction.h"
#import "CreditCardTransaction.h"
int main(int argc, const char * argv[])
{
Budget *europeBudget = [Budget new];
[europeBudget createBudget:1000.00 withExchangeRate:1.2500];
Budget *englandBudget = [Budget new];
[englandBudget createBudget:2000.00 withExchangeRate:1.5000];
NSMutableArray *transactions = [[NSMutableArray alloc]initWithCapacity:10];
Transaction *aTransaction;
for (int n=1; n < 2; n++) {
[aTransaction createTransaction:n * 100 forBudget:europeBudget];
[transactions addObject:aTransaction];
aTransaction = [CashTransaction new];
[aTransaction createTransaction:n * 100 forBudget:englandBudget];
[transactions addObject:aTransaction];
}
int n = 1;
while (n < 4) {
[aTransaction createTransaction:n * 100 forBudget:europeBudget];
[transactions addObject:aTransaction];
aTransaction = [CreditCardTransaction new];
[aTransaction createTransaction:n * 100 forBudget:englandBudget];
[transactions addObject:aTransaction];
n++;
}
for (Transaction * aTransaction in transactions) {
[aTransaction spend];
}
return 0;
}
Transaction.h
進口@class預算;
@interface Transaction : NSObject
{
Budget *budget;
double amount;
}
- (void) createTransaction:(double)theAmount forBudget:(Budget*) aBudget;
- (void) spend;
- (void)trackSpending: (double) theAmount;
@end
Transaction.m
#import "Transaction.h"
#import "Budget.h"
@implementation Transaction
- (void) createTransaction:(double)theAmount forBudget:(Budget*) aBudget
{
budget = aBudget;
amount = theAmount;
}
- (void) spend
{
// Fill in the method in subclasses
}
-(void)trackSpending: (double) theAmount
{
NSLog(@"You are about to spend another %.2f", theAmount);
}
@end
糾正我,如果我錯了,但0x0是NULL爲十六進制。我想你是在傳遞一個空對象。 – CodaFi 2012-03-24 18:13:44
認爲它可能位於NSMutableArray對象中,但找不到它。已經添加了main.m文件供您閱讀。 – pdenlinger 2012-03-24 18:26:40
發送消息給一個無對象是完全沒問題的。它返回零,編譯器將其轉換爲函數的返回類型。 (這是一個問題,如果你的返回類型是NSRect,但是新版本的SDK可以正確處理,正如我所記得的那樣。)objc_messageSend中的崩潰通常意味着你正在向釋放的對象發送消息。 – davehayden 2012-03-24 18:29:07