本文主要是介绍OCLint的部分规则(Migration 部分),希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
OCLint的部分规则(Migration 部分)
对OCLint的部分规则进行简单翻译解释,有部分进行了验证以及进一步分析、测试。OCLint其他相关内容如下:
- | - |
---|---|
OCLint-iOS-OC项目几种简单使用 | OCLint的部分规则(Basic 部分) |
OCLint的部分规则(Unuseed 部分) | OCLint的部分规则(Size 部分) |
OCLint的部分规则(Redundant 部分) | OCLint的部分规则(Naming 部分) |
OCLint的部分规则(Migration 部分) | OCLint的部分规则(Empty 部分) |
OCLint的部分规则(Design 部分) | OCLint的部分规则(Convention 部分) |
OCLint的部分规则(CoCoa 部分) |
1、use boxed expression
Since:0.7
定义类传送门~点击
This rule locates the places that can be migrated to the new Objective-C literals with boxed expressions.
简单解释:建议使用新方法,快速创建(
numberWithInt
和stringWithUTF8String:
)。
void aMethod() {NSNumber *fortyTwo = [NSNumber numberWithInt:(43 - 1)];// NSNumber *fortyTwo = @(43 - 1);NSString *env = [NSString stringWithUTF8String:getenv("PATH")];// NSString *env = @(getenv("PATH"));}
2、 use container literal
Since:0.7
定义类传送门~点击
This rule locates the places that can be migrated to the new Objective-C literals with container literals.
简单解释:建议使用新方法,快速创建(
arrayWithObjects
和dictionaryWithObjects
)。
void aMethod(){NSArray *a = [NSArray arrayWithObjects:@1, @2, @3, nil];// NSArray *a = @[ @1, @2, @3 ];NSDictionary *d = [NSDictionary dictionaryWithObjects:@[@2,@4] forKeys:@[@1,@3]];// NSDictionary *d = @{ @1 : @2, @3 : @4 };}
3、use number literal
Since:0.7
定义类传送门~点击
This rule locates the places that can be migrated to the new Objective-C literals with number literals.
简单解释:建议使用新方法,快速创建(
numberWithInt
和numberWithBOOL
)。
void aMethod() {NSNumber *fortyTwo = [NSNumber numberWithInt:42];// NSNumber *fortyTwo = @42;NSNumber *yesBool = [NSNumber numberWithBool:YES];// NSNumber *yesBool = @YES;}
4、use object subscripting
Since:0.7
定义类传送门~点击
This rule locates the places that can be migrated to the new Objective-C literals with object subscripting.
简单解释:建议使用新方法,快速创建(
objectAtIndex
和objectForKey
)。
void aMethod(NSArray *a, NSDictionary *d) {id item = [a objectAtIndex:0];// id item = a[0];id item = [d objectForKey:@1];// id item = d[@1];}
这篇关于OCLint的部分规则(Migration 部分)的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!