复制代码
  • SomeObject *obj = [[SomeObject alloc] initWithCenter:centerPoint radius:radius];






  •  
    复制代码
  • SomeObject *obj = [SomeObject alloc];[obj initWithCenter:centerPoint radius:radius];




  • 这两句不是等效的。第二句的执行结果可能返回无效对象。

    相关文章: