iOS開發:學習筆記—變數、屬性、方法、實現

來源:互聯網
上載者:User

   1、代碼說明:

  Person.h

  Person.h

  #import

  @interface Person : NSObject

  {

  int age,sex;//變數的定義

  int height,width;

  }

  @property int age,sex;//屬性的定義

  @property char height;

  //-(void) setAge;

  -(int) setAge1 :(int)a;

  -(int) setWH :(int)w :(int)h;

  /* 方法的定義

  格式

  -(返回的資料類型) 方法名稱 :(參數1的資料類型)參數1名稱 :(參數2的資料類型)參數2名稱

  */

  @end

  Person.m

  Person.m

  #import "Person.h"

  @implementation Person

  @synthesize age,sex;//訪問器

  //@synthesize height;

  /*

  【我的註解】

  @synthesize 引用 @property 關聯 @interface

  引用不到,或者關聯不到,均會拋錯。

  */

  #pragma mark ------setAge----

  //-(void) setAge;

  //{

  // age=20;

  //}

  #pragma mark ------setAge1------

  -(int) setAge1 :(int)a

  {

  age=a;

  return age;

  }

  #pragma mark ------setWH------

  -(int) setWH :(int)w :(int)h //方法的實現

  {

  width = 100;

  height=175;

  return age*height;

  }

  @end

  main.m

  main.m

  #import

  #import "Person.h"

  int main(int argc, const char * argv[])

  {

  @autoreleasepool {

  Person *person=[Person alloc];

  [person init];

  person.age=1;//屬性

  NSLog(@"person.ag = %i",person.age);//輸出屬性,注意類型匹配,否則拋錯

  NSLog(@"person = %@",person);//輸出對象

  [person setWH:6 :10];//方法

  [person release];//如果使用了ARC機制,release就不能用了。

  }

  return 0;

  }

  2、我的註解(詳見下面三張圖):

  @synthesize 引用 @property 關聯 @interface

  引用不到,或者關聯不到,均會拋錯。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.