符合中小企业对网站设计、功能常规化式的企业展示型网站建设
本套餐主要针对企业品牌型网站、中高端设计、前端互动体验...
商城网站建设因基本功能的需求不同费用上面也有很大的差别...
手机微信网站开发、微信官网、微信商城网站...
观察下面这段代码和以前代码的区别,主要是看self ; 一般self 是代表当前 对象。
我们提供的服务有:成都网站建设、做网站、微信公众号开发、网站优化、网站认证、衢江ssl等。为上千余家企事业单位解决了网站和推广的问题。提供周到的售前咨询和贴心的售后服务,是有科学管理、有技术的衢江网站制作公司
1.#import2. 3.@interface Animal: NSObject 4. 5.@property int Speed, Legs; 6. 7.-(void) display; 8. 9.-(void) set_speed:(int) speed o:(int) legs ; 10. 11.@end 12. 13.@implementation Animal 14. 15.@synthesize Speed,Legs; 16. 17.-(void) display 18.{ 19. NSLog(@"run speed %i",Speed); 20. NSLog(@"I have %i legs",Legs); 21.} 22. 23.-(void) set_speed:(int) speed o: (int) legs 24.{ 25. Speed = speed; 26. Legs = legs; 27. [self display]; 28.} 29.@end 30. 31. 32.int main(int argc, const char * argv[]) 33.{ 34. 35. @autoreleasepool { 36. Animal *dog; 37. 38. dog = [Animal alloc]; 39. dog = [dog init]; 40. 41. 42. [dog set_speed:30 o: 4]; 43. 44. 45. Animal * rabbit = [[Animal alloc] init]; 46. 47. [rabbit set_speed:56 o:4]; 48. 49. 50. // insert code here... 51. NSLog(@"Hello, World!"); 52. 53. } 54. return 0; 55.}