|
复制代码
SomeObject *obj = [[SomeObject alloc] initWithCenter:centerPoint radius:radius];
|
和
|
复制代码
SomeObject *obj = [SomeObject alloc];[obj initWithCenter:centerPoint radius:radius];
|
这两句不是等效的。第二句的执行结果可能返回无效对象。
相关文章:
-
2022-01-09
-
2022-02-11
-
2022-03-05
-
2022-12-23
-
1970-01-01
-
2021-09-20
-
2021-06-06
-
2022-12-23