Objective-C 類,函數調用,objective-c調用

來源:互聯網
上載者:User

Objective-C 類,函數調用,objective-c調用

 1 // 2 //  main.m 3 //  L02HelloObjC 4 // 5 //  Created by JinXin on 15/11/25. 6 //  Copyright © 2015年 JinXin. All rights reserved. 7 // 8  9 #import <UIKit/UIKit.h>10 #import "AppDelegate.h"11 12 // 類的聲名部分13 @interface Hello : NSObject{14     int num;15 }16 -(void)sayHello;17 @end18 19 // 類的實現部分20 @implementation Hello21 -(instancetype)init{22     self = [super init]; // 初始化父類23     if (self) {24         num = 100;25     }26     return self;27 }28 29 -(void)sayHello{30     NSLog(@"hello oc class");31     NSLog(@"num is %d",num);32 }33 @end34 35 int main(int argc, char * argv[]) {36 37     Hello *h = [[Hello alloc]init];  // 建立類對象38     [h sayHello]; // 調用類方法39     40         @autoreleasepool {41         42         return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class]));43     }44 }

 

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.