OC语言@property @synthesize和id

简介: OC语言@property @synthesize和id 一、@property @synthesize关键字 注意:这两个关键字是编译器特性,让xcode可以自动生成getter和setter的声明和实现。

 

OC语言@property @synthesizeid

一、@property @synthesize关键字

注意:这两个关键字是编译器特性,让xcode可以自动生成gettersetter的声明和实现。

(一)@property 关键字

@property 关键字可以自动生成某个成员变量的settergetter方法的声明

@property int age;

编译时遇到这一行,则自动扩展成下面两句:

- (void)setAge:(int)age;

- (int)age;

 

(二)@synthesize关键字

@synthesize关键字帮助生成成员变量的settergetter方法的实现。

语法:@synthesize age=_age;

相当于下面的代码:

voidsetAge:(int)age

{

_age=age;

}

- (int)age

{

Return _age;

}

 

(三)关键字的使用和使用注意

类的声明部分:

 

类的实现部分:

 

测试程序:

 

新版本中:

类的声明部分:

 

类的实现部分:

 

测试程序:

 

(1)在老式的代码中,@property只能写在@interface  @end中,@synthesize只能写在@implementation   @end中,自从xcode 4.4后,@property就独揽了@property@synthesize的功能。

(2)@property int age;这句话完成了3个功能:1)生成_age成员变量的getset方法的声明;2)生成_age成员变量setget方法的实现;3)生成一个_age的成员变量。

注意:这种方式生成的成员变量是private的。

(3)可以通过在{}中加上int _age;显示的声明_ageprotected的。

(4)原则:getset方法同变量一样,如果你自己定义了,那么就使用你已经定义的,如果没有定义,那么就自动生成一个。

(5)手动实现:

1)如果手动实现了set方法,那么编译器就只生成get方法和成员变量;

2)如果手动实现了get方法,那么编译器就只生成set方法和成员变量;

3)如果setget方法都是手动实现的,那么编译器将不会生成成员变量。

 

二、Id

id 是一种类型,万能指针,能够指向\操作任何的对象。

注意:id的定义中,已经包好了*号。Id指针只能指向os的对象。

id 类型的定义

Typedef struct objc object{

Class isa;

} *id;

局限性:调用一个不存在的方法,编译器会马上报错。

 

 

目录
相关文章
|
4月前
|
Python
扩展类的 property
扩展类的 property
41 0
|
8月前
|
C++
QML语法之property属性
QML语法之property属性
376 3
|
Java 数据库连接 mybatis
mybatis报错:Type handler was null on parameter mapping or property ‘__frch_xxx_0’
mybatis报错:Type handler was null on parameter mapping or property ‘__frch_xxx_0’
2145 0
mybatis报错:Type handler was null on parameter mapping or property ‘__frch_xxx_0’
|
8月前
|
前端开发
【前端】解决: Property 'inline' does not exist on type 'ClassAttributes<HTMLElement> & HTMLAttribut...
【前端】解决: Property 'inline' does not exist on type 'ClassAttributes<HTMLElement> & HTMLAttribut...
195 0
|
数据库 数据安全/隐私保护 Python
property、魔法方法和继承
property、魔法方法和继承
MyBaits异常解决:There is no getter for property named ‘ID‘ in ‘class ***‘
MyBaits异常解决:There is no getter for property named ‘ID‘ in ‘class ***‘
|
JavaScript 前端开发
|
PHP
【laravel】模型一对一Trying to get property 'price' of non-object
【laravel】模型一对一Trying to get property 'price' of non-object
153 0
【laravel】模型一对一Trying to get property 'price' of non-object
|
JavaScript 前端开发 C++
前端杂谈: Attribute VS Property
第一个问题: 什么是 attribute & 什么是 property ? attribute 是我们在 html 代码中经常看到的键值对, 例如: <input id="the-input" type="text" value="Name:" /> 上面代码中的 input 节点有三个 attr.
2586 0
高封装的property方法
class Person(): def __init__(self): self.__age = 0 def set_age(self, age): if age < 0 or age > 200: self.
738 0