objective-c方法
方法定义了类和类实例在运行时所表现出的行为。分2种:class method、instance method.
方法能够声明在:interface、protocol、以及category。
1、语法:
Method type:+代表类方法,-代表实例方法。
Return type:要放在括号中。没有返回值,就写void。id是一个特殊的Objective-C类型。
上面的是方法声明语法,而方法定义语法虽然与上面的语法类似,但是区别是末尾不是分号,而是用花括号括起来的方法体。
2、调用方法
在Objective-C中,一个对象(发送者)和另一个对象(接收者)交互是通过发送消息来实现,所以接收者就需要调用一个方法。
语法:[receiver methodSegmentName:parameterValue ...];
例子:[Atom withProtons:6 neutrons:6 electrons:6];
相关推荐
fort0 2020-05-16
81570790 2020-04-16
86540698 2020-04-08
zhoutaifeng 2020-03-07
好好学习天天 2020-03-06
InterestSoul 2020-02-17
82467413 2019-12-31
84407518 2012-07-16
81570790 2013-07-01
83254851 2013-08-29
84334052 2019-11-19
86540698 2019-11-19
84467715 2011-07-25
81731290 2014-03-22
85437811 2014-03-22
dahuichen 2019-10-25
ObjectiveC 2011-09-20
80530297 2015-04-14
80530297 2015-04-20