A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

//
//  main.m
//  basic1.1
//
//  Created by lyricdon on 15/4/24.
//  Copyright (c) 2015年 lyricdon. All rights reserved.
//

#import <Foundation/Foundation.h>
#import "Dog.h"
int main(int argc, const char * argv[]) {
    @autoreleasepool {
        // insert code here...
        NSLog(@"Hello, World!");
        
        Dog *dog1=[Dog alloc];
        [dog1 init];
            
        int ID=[dog1 getID];
        int age=[dog1 getAge];
        float price=[dog1 getPrice];
        
        printf("dog1 id is %d age is %d price is %f",ID,age,price);
        
        
    }
    return 0;
}


//
//  Dog.h
//  basic1.1
//
//  Created by lyricdon on 15/4/24.
//  Copyright (c) 2015年 lyricdon. All rights reserved.
//

#ifndef basic1_1_Dog_h
#define basic1_1_Dog_h

@interface Dog:NSObject{
    @protected
    int ID;
    @public
    int age;
    @private
    float price;
}


//凡是以initxxxx开头的都是构造函数
-(id)init;
//函数名为init  不带参数
-(id)initWithID:(int)newID;
//带一个int参数
-(id)initWithID:(int)newID andAge:(int)newAge;
-(id)initWithID:(int)newID andAge:(int)newAge andPrice:(float)newPrice;

-(void)setID:(int)newID;
-(int)getID;
//set/get ID

-(void)setAge:(int)newAge;
-(int)getAge;

-(void)setPrice:(float)newPrice;
-(float)getPrice;

-(void)setID:(int)newID andAge:(int)newAge;
-(void)setID:(int)newID andAge:(int)newAge andPrice:(float)newPrice;
//set id age price



@end

#endif



//
//  Dog.m
//  basic1.1
//
//  Created by lyricdon on 15/4/24.
//  Copyright (c) 2015年 lyricdon. All rights reserved.
//

#import <Foundation/Foundation.h>
#import "Dog.h"

@implementation Dog

-(id)init
{
    return [self initWithID:1];
//    self=[super init];
//    //self表示父类
//    //self表示对象自己
//    if(self){
//        ID=1;
//        age=2;
//        price=60.0f;
//    }
//    return self;
}
-(id) initWithID:(int)newID
{
    return [self initWithID:newID andAge:2];
//    self=[super init];
//    if(self){
//        ID=newID;
//        age=2;
//        price=60.0f;
//    }
//    return self;
}

-(id)initWithID:(int)newID andAge:(int)newAge
{
    return [self initWithID:newID andAge:newAge andPrice:10.6f];
//    self=[super init];
//    if(self){
//        ID=newID;
//        age=newAge;
//        price=60.0f;
//    }
//    return self;
}

-(id)initWithID:(int)newID andAge:(int)newAge andPrice:(float)newPrice{
   
    self=[super init];
    if(self){
        ID=newID;
        age=newAge;
        price=newPrice;
    }
    return self;
}


-(void)setID:(int)newID
{
    ID=newID;
}
-(int)getID
{
    return ID;
}

-(void)setAge:(int)newAge
{
    age=newAge;
}

-(int)getAge
{
    return age;
}


-(void)setPrice:(float)newPrice
{
    price=newPrice;
}
-(float)getPrice
{
    return price;
}


-(void)setID:(int)newID andAge:(int)newAge
{
  
    ID=newID;
    age=newAge;
}
-(void)setID:(int)newID andAge:(int)newAge andPrice:(float)newPrice
{
    ID=newID;
    age=newAge;
    price=newPrice;
}






@end

1 个回复

正序浏览
提示的是  break point 1.1
里面内容是:
dog1        Dog *        0x100300580        0x0000000100300580
argv        const char **        0x7fff5fbff848        0x00007fff5fbff848
argc        int        1        1
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马