iOS-InterviewQuestion-collection icon indicating copy to clipboard operation
iOS-InterviewQuestion-collection copied to clipboard

iOS 开发者在面试过程中,常见的一些面试题,建议尽量弄懂了原理,并且多实践。

Results 15 iOS-InterviewQuestion-collection issues
Sort by recently updated
recently updated
newest added

``` c int a = 5; int b = 10; ``` 正解应该是 ``` c a ^= b; b ^= a; a ^=b; ``` 考察的是按位异或操作的原理

--类拓展 不能给系统的类添加方法 这里是不是描述错了,应该是可以给系统类添加方法的吧? @liberalisman

``` int a=5,b; b = (++a)+(++a); System.out.println(b); ``` 使用java验算了结果是13呀

update Partion to Partition