在类之间传递Object无法正常工作

时间:2011-05-05 20:24:05

标签: objective-c memory object

嘿伙计们, 我是Objective-c的新手,我在内存管理方面遇到了麻烦。我声明了3个类,Table,Dataset和我的Main类。在我的mainclass中,我创建了一个数据集对象,现在我试图将此Object传递给Tableobject,我想永久存储它。但在我看来,垃圾收集器在我可以使用它之前就会杀死它。

下面是一些代码:

数据集:

    //Dataset.h
@interface Dataset : NSObject {
    NSMutableArray* daten; 
}

@end

//Dataset.m
#import "Dataset.h"
#import "Datensatz.h"

@implementation Dataset


- (id) init
{
    self=[super init];
    daten=[[NSMutableArray alloc] init];
    return self;
}

表:

//Table.h

@class Dataset;

@interface Table : NSObject {
    Dataset* daten;
}
-(id)init:(NSTableView *)aTableView;
-(id)tableView:(NSTableView *)aTableView objectValueForTableColumn:(NSTableColumn *)aTableColumn row:(NSInteger)rowIndex;
- (NSInteger)numberOfRowsInTableView:(NSTableView *)aTableView;
@property (retain) Dataset* daten;

@end

//Table.m

#import "Table.h"
#import "Dataset.h"
@impl

ementation Table

    @synthesize daten;

    -(id)init:(NSTableView*)aTableView
    {
        self=[super init];
        [self setDaten:[Datenmenge alloc]];
        return self;
    }
- (NSInteger)numberOfRowsInTableView:(NSTableView *)aTableView
{
    NSLog(@"anzahl: %d %@",[self.daten anzahl], self.daten);//This is always 0 null
    return [daten anzahl];

}
    -(void)setDaten:(Dataset *)a
    {
        NSLog(@"setter: anzahl: %d %@",[a anzahl], a);
        [daten release];
        daten=[a retain];
        NSLog(@"setter: anzahl: %d %@",[daten anzahl], daten);
    }
    @end

在我的主类中,我执行以下操作:

  //init method
    [self setDaten:[[[Dataset alloc]init]autorelease]];
    tabelle=[[Table alloc] init:tableview];
    [tabelle setDaten:[self daten]];

Mainclass:

//code.h
//
//  MalWiederWasNeuesAppDelegate.h
//  MalWiederWasNeues
//
//  Copyright 2011 __MyCompanyName__. All rights reserved.
//

#import <Cocoa/Cocoa.h>
@class Datenmenge,Graph,Tabelle;

@interface MalWiederWasNeuesAppDelegate : NSObject <NSApplicationDelegate> {
    NSWindow *window;
    NSToolbarItem *datenKnopf;
    NSToolbarItem *speichernKnopf;
    NSSlider *scaleSlider;
    NSScroller *moveSlider;
    NSTableView* tableview;
    Graph* graph;
    Tabelle* tabelle;
    Datenmenge* daten;

}

-(void)tuWas;

- (IBAction)datenHinzufuegen:(id)sender;
- (IBAction)speichern:(id)sender;

@property (assign) IBOutlet NSWindow *window;
@property (assign) IBOutlet NSToolbarItem *datenKnopf;
@property (assign) IBOutlet NSToolbarItem *speichernKnopf;
@property (assign) IBOutlet NSSlider *scaleSlider;
@property (assign) IBOutlet NSScroller *moveSlider;
@property (assign) IBOutlet Graph *graph;
@property (assign) IBOutlet Tabelle *tabelle;
@property (assign) IBOutlet NSTableView* tableview;
@property (retain) Datenmenge* daten;
@end

//code.m
//
//  MalWiederWasNeuesAppDelegate.m
//  MalWiederWasNeues
//
//  Copyright 2011 __MyCompanyName__. All rights reserved.
//

#import "MalWiederWasNeuesAppDelegate.h"
#import "Datenmenge.h"
#import "Graph.h"
#import "Tabelle.h"
@implementation MalWiederWasNeuesAppDelegate

@synthesize window;
@synthesize daten;
-(id) init
{
    self.daten=[[Datenmenge alloc]init];
    [self.daten datenHinzufuegen:nil];
    tabelle=[[Tabelle alloc] init:tableview];
    tabelle.daten=daten;

    NSLog(@"konstruktor: %f %d",[daten maximum],[daten anzahl]);
    //graph.daten=daten;

    return self;
}

-(void)tuWas{

}

- (void)applicationDidFinishLaunching:(NSNotification *)aNotification {
    // Insert code here to initialize your application 
}

- (IBAction)datenHinzufuegen:(id)sender
{
    NSLog(@"%f %d",[daten maximum],[daten anzahl]);
    NSLog(@"daten hinzufügen");
}

- (IBAction) speichern:(id)sender
{
    NSLog(@"%@ %@",daten,[tabelle daten]);
    NSLog(@"speichern");    
}

@end

我希望这不是你的代码。 当我调用“tabelle”方法时,我的Table对象“daten”不引用数据集对象。但是“setDaten”中的NSLogs向我展示了有效的参考资料。 那么,我做错了什么?

晚上好, 卢卡斯

2 个答案:

答案 0 :(得分:1)

您将Daten定义为保留类型

@property (retain) Dataset* daten;@synthesize daten;

无需再实施方法

-(void)setDaten:(Dataset *)a这就是@synthesize daten;所做的事情

我认为这里的翻译时刻已经丢失了,所以我假设Table == Tabelle和Dataset == Datmenge,我没有看到你的主要课程的实现。

也把目光投向了这一点。

http://developer.apple.com/library/mac/#documentation/Cocoa/Conceptual/ObjectiveC/Chapters/ocProperties.html

答案 1 :(得分:0)

也许,主类的daten属性被声明为assign?在这种情况下,当您致电setDaten:时,daten是正确的,但在您之后尝试访问时可能已经自动释放。

此外,

-(void)setDaten:(Dataset *)a
{
    NSLog(@"setter: anzahl: %d %@",[a anzahl], a);
    [daten release];
    daten=[a retain];
    NSLog(@"setter: anzahl: %d %@",[daten anzahl], daten);
}

不是一个很好的setter实现。如果是== daten,那么这个对象将被释放(并且可能是dealloc'd)。在实现自己的setter时,您需要检查对象的身份。