xxx *a = [xxx new] 等价于 xxx *a = [[xxx alloc]init] ,但如果类的构造函数带参数就不能使用new了。

练习了下《Objective-C 基础教程》第3章代码。

Share.h 头文件

//
//  Share.h
//  SharesDemo01
//
//  Created by apple on 13-7-15.
//  Copyright (c) 2013年 FDStudio. All rights reserved.
//

#import <Foundation/Foundation.h>

typedef enum{
    KCircle,
    KRectangle,
    KOblateSpheroid
} ShareType;

typedef enum{
    KRedColor,
    KGreenColor,
    KBlueColor
} ShareColor;

typedef struct{
    int x,y,width,height;
} ShareRect;

@interface Share : NSObject{
    ShareColor fillColor;
    ShareRect bounds;
}

-(void)setFillColor:(ShareColor)c;
-(void)setBounds:(ShareRect)rect;
-(NSString *) ColorName:(ShareColor) c;
-(void)draw;

@end    //Share

@interface Circle : Share

@end    //Circle

@interface Rectangle : Share

@end    //Rectangle

Share.m 实现文件

//
//  Share.m
//  SharesDemo01
//
//  Created by apple on 13-7-15.
//  Copyright (c) 2013年 FDStudio. All rights reserved.
//

#import "Share.h"

@implementation Share

-(void)setFillColor:(ShareColor)c{
    fillColor = c;
}   //setFillColor

-(void)setBounds:(ShareRect)rect{
    bounds = rect;
}   //setBounds

-(NSString *)ColorName:(ShareColor)c{
    switch (c) {
        case KRedColor:
            return @"red";
            break;
        case KBlueColor:
            return @"blue";
            break;
        case KGreenColor:
            return @"green";
            break;
    }
    return @"no clue";
}

-(void)draw{

}   //draw
@end    //Share

@implementation Circle

-(void)draw{
    NSLog(@"drawing a circle at (%d %d %d %d) in %@", bounds.x, bounds.y,bounds.width,bounds.height, [self ColorName:fillColor]);
}

@end    //Circel

@implementation Rectangle

-(void)draw{
    NSLog(@"drawing a Rectangle at (%d %d %d %d) in %@", bounds.x, bounds.y,bounds.width,bounds.height, [self ColorName:fillColor]);
}

@end

main.m 主文件

//
//  main.m
//  SharesDemo01
//
//  Created by apple on 13-7-15.
//  Copyright (c) 2013年 FDStudio. All rights reserved.
//

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

int main(int argc, const char * argv[])
{

    @autoreleasepool {

        // insert code here...
        id shares[2];

        ShareRect rect0 = {0,0,10,30};
        shares[0] = [Circle new];
        [shares[0] setBounds:rect0];
        [shares[0] setFillColor:KRedColor];

        ShareRect rect1 = {30,40,50,60};
        shares[1] = [Rectangle new];
        [shares[1] setBounds:rect1];
        [shares[1] setFillColor:KBlueColor];

        for(int i=0; i<2; i++){
            [shares[i] draw];
        }
    }
    return 0;
}

objective-c new关键字的更多相关文章

  1. CoreData教程

    网上关于CoreData的教程能搜到不少,但很多都是点到即止,真正实用的部分都没有讲到,而基本不需要的地方又讲了太多,所以我打算根据我的使用情况写这么一篇实用教程.内容将包括:创建entity.创建r ...

  2. Automake

    Automake是用来根据Makefile.am生成Makefile.in的工具 标准Makefile目标 'make all' Build programs, libraries, document ...

  3. 作为一个新手的Oracle(DBA)学习笔记【转】

    一.Oracle的使用 1).启动 *DQL:数据查询语言 *DML:数据操作语言 *DDL:数据定义语言 DCL:数据控制语言 TPL:事务处理语言 CCL:指针控制语言 1.登录 Win+R—cm ...

  4. Objective C ARC 使用及原理

    手把手教你ARC ,里面介绍了ARC的一些特性, 还有将非ARC工程转换成ARC工程的方法 ARC 苹果官方文档 下面用我自己的话介绍一下ARC,并将看文档过程中的疑问和答案写下来.下面有些是翻译,但 ...

  5. Objective -C学习笔记之字典

    //字典:(关键字 值) // NSArray *array = [NSArray array];//空数组 // NSDictionary *dictionary = [NSDictionary d ...

  6. Objective - C中属性和点语法的使用

    一.属性        属性是Objective—C 2.0定义的语法,为实例变量提供了setter.getter方法的默认实现能在一定程度上简化程序代码,并且增强实例变量的访问安全性         ...

  7. Qt for iOS,Qt 与Objective C混合编程

    项目设置 既然要聊 Qt 混合 OC 编程,首先要简单介绍一下 Objective C .我只有一句话:Go,问搜索引擎去.因为我所知实在有限,怕误导了您.当然如果您不怕,往下看吧. OC源文件介绍 ...

  8. iOS开发——新特性OC篇&Objective新特性

    Objective新特性 Overview 自 WWDC 2015 推出和开源 Swift 2.0 后,大家对 Swift 的热情又一次高涨起来,在羡慕创业公司的朋友们大谈 Swift 新特性的同时, ...

  9. Objective中的协议(Protocol)

    Objective中的协议(Protocol) 作用: 专门用来声明一大堆方法. (不能声明属性,也不能实现方法,只能用来写方法的声明). 只要某个类遵守了这个协议.就相当于拥有这个协议中的所有的方法 ...

  10. iOS完全自学手册——[三]Objective-C语言速成,利用Objective-C创建自己的对象

    1.前言 上一篇已经介绍了App Delegate.View Controller的基本概念,除此之外,分别利用storyboard和纯代码创建了第一个Xcode的工程,并对不同方式搭建项目进行了比较 ...

随机推荐

  1. 《用格式化(fprintf和fscanf函数)的方式读写文件》

    //用格式化(fprintf和fscanf函数)的方式读写文件 [用格式化的方式向文件中写入数据]#include<stdio.h>#include<stdlib.h> int ...

  2. AFNetworking vs ASIHTTPRequest vs MKNetworkKit

    AFNetworking vs ASIHTTPRequest vs MKNetworkKit

  3. hdu 2027

    ps:发现语文理解能力不行也是醉醉的....是每个测试实例空行....空!行!不是空格! 还有就是gets才能吸收空格,而scanf不能. 代码: #include "stdio.h&quo ...

  4. SMS短信PDU编码

    目前,发送短消息常用Text和PDU(Protocol Data Unit,协议数据单元)模式.使用Text模式收发短信代码简单,实现起来十分容易,但最大的缺点是不能收发中文短信:而PDU模式不仅支持 ...

  5. php大力力 [031节] php设计系统后台菜单和样式设计

    php大力力 [031节] php设计系统后台菜单和样式设计 耗掉我一整夜的时间,把后台html设计了一个,对于我这样的html白痴,实属不容易啊. 留下一点点网上查找的网页知识: 索马里论坛群发简介 ...

  6. php大力力 [017节]来来来,庆祝一下🎁大力力第一个数据库录入程序完成!

    庆祝一下

  7. Linux内核中关于内存的数据结构

    物理页面 /* * Try to keep the most commonly accessed fields in single cache lines * here (16 bytes or gr ...

  8. ES6:模块简单解释

    modules是ES6引入的最重要的一个特性. 以后写模块的时候就直接按照ES6的modules语法来写 ,然后用babel+browserify 来打包就行了. modules规范分两部分,一部分是 ...

  9. C# virtual和abstract的

    virtual和abstract都是用来修饰父类的,通过覆盖父类的定义,让子类重新定义. 它们有一个共同点:如果用来修饰方法,前面必须添加public,要不然就会出现编译错误:虚拟方法或抽象方法是不能 ...

  10. linux下的定时任务

    cronb命令 在Linux中,周期执行的任务一般由cron这个守护进程来处理.ps -ef | grep cron.cron读取一个或多个配置文件,这些配置文件中包含了命令行及其调用时间. cron ...