文章详情

  • 游戏榜单
  • 软件榜单
关闭导航
热搜榜
热门下载
热门标签
php爱好者> php文档>Categories and Protocols(Chapter 11 of Programming in Objective-C 2.0)

Categories and Protocols(Chapter 11 of Programming in Objective-C 2.0)

时间:2010-10-18  来源:Ray Z

  This interface section tells the compiler you are adding an extension to the class called Fraction under the category named MathOps.The MathOps category contains four instance methods: add:, mul:, sub:, and div:. Each method takes a fraction as its argument and returns one as well. 

  Some points about categories are worth mentioning. First, although a category has access to the instance variables of the original class, it can’t add any of its own. If you need to do that, consider subclassing. Also, a category can override another method in the class, but this is typically considered poor programming practice. 

1 @protocol Drawing
2 -(void) paint;
3 -(void) erase;
4 @optional
5 -(void) outline;
6 @end

 

 

  Note the use of the @optional directive here. Any methods that are listed following that directive are optional. That is, an adopter of the Drawing protocol does not have to implement the outline method to conform to the protocol. (And you can subsequently switch back to listing required methods by using the @required directive inside the protocol definition.) 

相关阅读 更多 +
排行榜 更多 +
辰域智控app

辰域智控app

系统工具 下载
网医联盟app

网医联盟app

运动健身 下载
汇丰汇选App

汇丰汇选App

金融理财 下载