gpt4 book ai didi

objective-c - 是否执行 self = self init;返回 self ; Objective-C 中的效果与 swift 中 self.init() 的效果相同吗?

转载 作者:行者123 更新时间:2023-11-30 10:04:51 27 4
gpt4 key购买 nike

做的事:

self = self.init;
return self;

在 Objective-C 中具有相同的效果:

self.init() 

快速?

例如,在这种情况下:

else if([format.dateFormatType compare: ISO8601DateFormatType] == NSOrderedSame) {
NSString *isoFormat = ISO8601DateFormatType;
NSString *dateFormat = (isoFormat != nil) ? isoFormat : ISO8601DateFormatType;
NSDateFormatter *formatter = [DateFormat CustomDateFormat: dateFormat];
formatter.locale = [NSLocale localeWithLocaleIdentifier: (@"en_US_POSIX")];
formatter.timeZone = [NSTimeZone localTimeZone];
formatter.dateFormat = dateFormat;
NSDate *date = [formatter dateFromString:(string)];
if (date != nil){
return [self initWithTimeInterval: 0 sinceDate: date];
}
else {
self = self.init;
return self;
}
}

最佳答案

在 Objective-C 中,相当于 self.init() 在同一范围内调用指定或默认初始化器的方法是

if (date != nil) {
return [self initWithTimeInterval: 0 sinceDate: date];
} else {
return [self init];
}

关于objective-c - 是否执行 self = self init;返回 self ; Objective-C 中的效果与 swift 中 self.init() 的效果相同吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36601376/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com