V2EX = way to explore
V2EX 是一个关于分享和探索的地方
现在注册
已注册用户请  登录
iOS 开发实用技术导航
NSHipster 中文版
http://nshipster.cn/
cocos2d 开源 2D 游戏引擎
http://www.cocos2d-iphone.org/
CocoaPods
http://cocoapods.org/
Google Analytics for Mobile 统计解决方案
http://code.google.com/mobile/analytics/
WWDC
https://developer.apple.com/wwdc/
Design Guides and Resources
https://developer.apple.com/design/
Transcripts of WWDC sessions
http://asciiwwdc.com
Cocoa with Love
http://cocoawithlove.com/
Cocoa Dev Central
http://cocoadevcentral.com/
NSHipster
http://nshipster.com/
Style Guides
Google Objective-C Style Guide
NYTimes Objective-C Style Guide
Useful Tools and Services
Charles Web Debugging Proxy
Smore
qlqsh
V2EX  ›  iDev

类方法和实例方法的疑问。。。

  •  
  •   qlqsh · 2013-10-12 11:00:26 +08:00 · 3373 次点击
    这是一个创建于 3820 天前的主题,其中的信息可能已经有所发展或是发生改变。
    比如:
    NSArray *array = [[NSArray alloc] init];
    NSArray *array = [NSArray array];

    以前的时候是,一个需要自己释放,一个是自动释放。但现在ARC的环境下,是不是2个方法有点多余了呢。

    有哪位了解,在目前ARC的情况下,2者安全上、性能上有什么差别?

    苹果是不是考虑,可以放弃一个呢?这样的话,iOS的整体API能下降3成多吧?

    有哪位前辈,高人指点一下?
    4 条回复    1970-01-01 08:00:00 +08:00
    fgwww
        1
    fgwww  
       2013-10-12 11:10:23 +08:00
    又不是所有的项目都上ARC了。你总得给人留条活路吧。一上来把这种最初的api都废弃掉你想让大家玩命改代码么?
    qlqsh
        2
    qlqsh  
    OP
       2013-10-12 12:14:13 +08:00
    这不是方向嘛。嘿嘿。。。
    lldong
        3
    lldong  
       2013-10-12 13:46:32 +08:00
    第二个这种叫做 Shortcut Constructor Method

    • What is the external interface for creating a new object when a Constructor Method is too wordy?

    • Represent object creation as a message to one of the arguments to the Constructor Method. Add no more than three of these Shortcut Constructor Methods per system you develop.

    摘自 "Smalltalk Best Practice Patterns"
    nevercry
        4
    nevercry  
       2013-10-12 13:48:54 +08:00
    没区别吧,字越少的写法越喜欢 NSArray *array = @[];
    关于   ·   帮助文档   ·   博客   ·   API   ·   FAQ   ·   我们的愿景   ·   实用小工具   ·   3080 人在线   最高记录 6543   ·     Select Language
    创意工作者们的社区
    World is powered by solitude
    VERSION: 3.9.8.5 · 24ms · UTC 12:44 · PVG 20:44 · LAX 05:44 · JFK 08:44
    Developed with CodeLauncher
    ♥ Do have faith in what you're doing.