最近时间比较充裕,想学习IOS开发,经过多方考察还是决定从oc学起,从基础的oc语法慢慢的走向cocoa框架的学习。oc的入门语言我我选择最新版的objective-c程序设计,主要是参考豆瓣的书评。借助51cto的博客,来记录下学习历程。
分类:
其他好文 时间:
2015-06-06 23:43:23
阅读次数:
330
1. 1 #import "Fraction.h" 2 3 @interface Fraction (MathOps) 4 5 - (Fraction *) add: (Fraction *) f; 6 7 - (Fraction *) mul: (Fraction *) f; 8 9 - ...
分类:
其他好文 时间:
2014-11-21 01:22:09
阅读次数:
139
1. 1 - (id) init 2 { 3 return [self initWithWidth: 0 andHeight: 0]; 4 } 5 6 - (id) initWithWidth: (int) w andHeight: (int) h 7 { 8 self = [su...
分类:
其他好文 时间:
2014-11-19 23:39:36
阅读次数:
267
1.检测不到reduce方法,因为Complex类中没有定义;2.合法。因为id类型可以用来存储属于任何类的对象(不能为id变量使用点运算符)3. 1 //XYPoint类print方法 2 3 4 - (void) print 5 { 6 NSLog(@" (%g , %g) ", x...
分类:
其他好文 时间:
2014-11-13 18:48:42
阅读次数:
225
1.各个方法的实现 1 - (Fraction *) subtract: (Fraction *) f 2 { 3 Fraction *result = [[Fraction alloc] init]; 4 5 result.numerator = numerator *f...
分类:
其他好文 时间:
2014-11-08 23:30:13
阅读次数:
462
1.1 int value1,value2;2 printf("请输入两个整数,用逗号隔开:");3 scanf("%d,%d",&value1,&value2);4 5 if (value1 % value2 == ...
分类:
其他好文 时间:
2014-11-07 16:48:05
阅读次数:
174
1. NSLog(@"数字N N的平方"); NSLog(@"--------------------"); for (int n = 1; n <= 10; n++) { NSLog(@"%2d ...
分类:
其他好文 时间:
2014-09-28 02:26:50
阅读次数:
255
1. 非法常量 0x10.5 0X0G1 98.7U 17777s 0996 1.2Fe-7 15,000 .2. //只需要列出表达式就可以 int F = 27; //设置F为华氏温度,赋值 27 float C...
分类:
其他好文 时间:
2014-09-17 23:04:32
阅读次数:
410
1. 不合法:6_05 (不能以数字开头) A$ ($是非法符号).2. myBook (openBook,closeBook,readBook,takeBook,putBook).3. [myBook takeBook]; [myBook openBook]; [myB...
分类:
其他好文 时间:
2014-09-14 17:50:27
阅读次数:
312
1.略2.#import int main(int argc, const char * argv[]){ @autoreleasepool { // insert code here... NSLog(@"In Obiective-c, lowerc...
分类:
其他好文 时间:
2014-09-13 19:58:45
阅读次数:
318