Objective-C知识总结(抄) - 暗夜's Blog

Objective-C知识总结(抄)

暗夜 posted @ 2010年11月11日 19:51 in 未分类 , 1728 阅读

刚刚使用Objective-C 写了一个面向对象的程序,现在将一些知识点归结如下:


1)Objective-C的类定义包含两个部分,一是类接口的声明,二是类方法的实现。
2)所有的 Objective-C的所有编译指示都以@打头。
a)类接口以@interface开始以@end结束。
b)类的实现以@implementation开始以@end结束。
c)每个实现文件必须包含它自己对应的接口文件,这样实现文件中就可以安全的将 父类名删除,将类的 instance变量声明删除,只关注类的方法的实现;可以这样做的原因是我们没有必要重复接口文件中同样的声 明。
d)不要将源文件中的函数参数命名成与该类成员变量同名的变量,否则函数的参数名会覆盖类的成员变量,导 致在该函数的实现中看不到类定义中的成员变量。
如在头文件中一个类接口声明如下:


@interface Circle:NSObject
{
ShapeRect bounds;
ShapeColor fillColor;
}
- (void) SetFillColor: (ShapeColor) fillColor;
- (void) SetBounds: (ShapeRect) bounds;
- (void) draw;
@end //Circle



我们源文件中类的实现如下:


@implementation Circle

- (void) SetFillColor: (ShapeColor)c
{
fillColor = c;
}

- (void) SetBounds: (ShapeRect)b
{
bounds = b;
}

- (void) draw
{
NSLog(@"drawing a circle at (%d,%d,%d,%d) in %@",bounds.x,bounds.y,bounds.width,bounds.hight,colorName(fillColor));
}
@end //circle

3)id 比较独特,在Objective-C中它是一种泛型,该类型的变量可以存储指向任何一个对象的指针。


 

4)向一个对象发送一个消息,那么该对象又是如何去执行该消息所对应的代码呢?
每个对象都包含一个指向其类的指针,而类也包含一个指针该指针指向该类的代码区域。
这样当对象收到一个消息,对象通过其包含的指向找到其所属的类对象,通过类对象的代码区指针又可以找到与消息对应的函数。
每个对象都包含一个名叫isa的指针,就是该指针指向类。

5)Objective-C中的基本术语:
类:类是一种结构,它用于表示一个对象的类型。对象通过isa指针来引用类来获得与本身有关的所有信息,尤其是像4)中所说的如何执行每种操作的代码。

对象:也是一种结构,该结构主要包含成员变量的值和指向其类的隐藏指针(isa);同一类的所有象共享一份代码。


实例:是“对象”的另外一种称呼。
消息:是对象可以执行的操作,用于通知对象去做什么,一个对象能响应哪些消息可以从接口定义中知道。
方法:为响应消息而运行的代码。根据对象的类,消息可以调用不同的方法。
接口:是对对象的类应该提供的特性的描述。相当于是告诉其他使用该类的客户,该类的对象可以接收哪几个消息。与上面说的“消息”术语一致。
实现:是使接口正常工作的代码,也就是使对象消息正常工作的代码。与上面的“实现”术语一致。

6)有些方法名后有冒号,有些没有呢?如何判断什么时候有,什么时候没有?
如果方法使用参数,则需要冒号;否则不需要冒号。如上面的代码片断。

Avatar_small
seo service london 说:
2024年5月18日 19:02

A debt of gratitude is in order for the decent blog. It was exceptionally helpful for me. I m glad I discovered this blog. Much obliged to you for imparting to us,I too dependably gain some new useful knowledge from your post

Avatar_small
fknapredak 说:
2024年7月09日 13:52

Thanks for sharing excellent informations. Your web-site is very cool. I’m impressed by the details that you have on this site. It reveals how nicely you understand this subject. Bookmarked this web page, 

Avatar_small
here 说:
2024年7月09日 13:53

I think you would be hard pressed to find somebody with the same consistency I have had over the years so I am happy with that. First of all let me tell you, you have got a great blog .I am interested in looking for more of such topics and would like to have further information

Avatar_small
토동산 说:
2024年7月09日 13:53

I at last discovered grand post here.I will get back here. I just added your blog to my bookmark districts. thanks.Quality presents is the major on welcome the guests to visit the site page, that is the thing that this site page is giving.I see something fascinating about your website, so I saved to bookmarks. Web webpage

Avatar_small
information 说:
2024年7月09日 13:54

Im impressed. I dont think Ive met anyone who knows as much about this subject as you do. Youre truly well informed and very intelligent. You wrote something that people could understand and made the subject intriguing for everyone. Really, great blog youve got here. It’s difficult to acquire knowledgeable people on this topic, nevertheless, you sound like you know what you are dealing with! Thanks

Avatar_small
read more 说:
2024年7月09日 13:54

Your personal dedication to passing the solution all around has been certainly advantageous and have constantly allowed those like me to get to their objectives. Your amazing helpful hints and tips denotes a whole lot to me and additionally to my colleagues. Thanks a ton; from all of us. Thank you for all of the hard work on this web site. 

Avatar_small
oktotocommunity 说:
2024年7月09日 13:54

This is such an awesome asset, to the point that you are giving and you give it away for nothing. I adore seeing sites that comprehend the benefit of giving a quality asset to free. It is the old what circumvents comes around schedule.

Avatar_small
mtsearchlab 说:
2024年7月09日 13:55

Today, I was just browsing along and came upon your blog. Just wanted to say good blog and this article helped me a lot, due to which I have found exactly I was looking.

Avatar_small
todamtoto 说:
2024年7月09日 13:56

Thank you again for all the knowledge you distribute,Good post. I was very interested in the article, it's quite inspiring I should admit. I like visiting you site since I always come across interesting articles like this one.Great Job, I greatly appreciate that.Do Keep sharing! Regards

Avatar_small
good data 说:
2024年7月09日 13:56

Its a great pleasure reading your post.Its full of information I am looking for and I love to post a comment that "The content of your post is awesome" Great work

Avatar_small
먹튀검증사이트 说:
2024年7月09日 13:57

The desire to make money online through the use of social platforms is perfectly normal. In order to achieve this quest, an optimal blogging system is required. A sound blogging system would allow its user adopt a systematic approach to quench his blogging endeavors. Writing is an interesting art if properly crafted. The more interesting fact is that anyone can write.

Avatar_small
개구리토토 说:
2024年7月09日 13:57

I merely stumbled apropos your blog as well as similarly liked to proclaim that I have truly absolutely suched as examining your blog post. Any type of peculiarity I will absolutely be subscribing in your feed.

Avatar_small
good information 说:
2024年7月09日 13:58

t has fully emerged to crown Singapore's southern shores and undoubtedly placed her on the global map of residential landmarks. I still scored the more points than I ever have in a season for GS. 

Avatar_small
Learn more 说:
2024年7月09日 13:58

I merely stumbled apropos your blog as well as similarly liked to proclaim that I have truly absolutely suched as examining your blog post. Any type of peculiarity I will absolutely be subscribing in your feed.

Avatar_small
good data 说:
2024年7月09日 13:59

pleasaittle little bit of it i have you ever ever bookmarked to have a take a look at new stuff you publish… i’ve loved studying. Pleasant weblog. Sick be bookmarking hold travelling this internet net website in reality usually

Avatar_small
check here 说:
2024年7月09日 16:09

Just admiring your work and wondering how you managed this blog so well. It’s so remarkable that I can't afford to not go through this valuable information whenever I surf the internet!

Avatar_small
More details 说:
2024年7月09日 16:09

I'm always searching out a few unfastened kinds of stuff over the net. there are also some agencies which give unfastened samples. superb and interesting article. extraordinary matters you've got usually shared with us. thanks

Avatar_small
information 说:
2024年7月09日 16:10

This is such an awesome asset, to the point that you are giving and you give it away for nothing. I adore seeing sites that comprehend the benefit of giving a quality asset to free. It is the old what circumvents comes around schedule.

Avatar_small
information 说:
2024年7月09日 16:11

Great post i must say and thanks for the information. Education is definitely a sticky subject. However, is still among the leading topics of our time. I appreciate your post and look forward to more

Avatar_small
check here 说:
2024年7月09日 16:11

Hello there, I have to say it was a really terrific experience for me when I dropped by at your website. I hope you don't mind if I praise you on the superior quality of your work and to send you all the best with it as you advance in the future. It was a pleasure to browse your web site and I shall definitely be calling back again shortly to discover how you are doing. Thanks a ton and I will no doubt see you here again soon 

Avatar_small
meogtwimalu 说:
2024年7月09日 16:13

That is the reason selling promoting efforts showcasing with the goal that you could significant investigate past advertisment. Simply to scribble down more grounded set that fit this depiction

Avatar_small
Find out 说:
2024年7月09日 16:13

We can assure you that when you take our Airport Transfer Reading services then you reach your destination on time safely and comfortably. The drivers provided by our company are very smart, well trained, and friendly as well as courteous. Thanks for sharing! I din’t knew all of them but i liked some changes such as option for different views 

Avatar_small
website 说:
2024年7月09日 16:14

I’m impressed, I must say. Really rarely should i encounter a blog that’s both educative and entertaining, and without a doubt, you’ve hit the nail within the head. Your concept is outstanding; the thing is an issue that too few folks are speaking intelligently about. I am delighted which i came across this inside my find something with this.

Avatar_small
good information 说:
2024年7月09日 16:38

Awesome article! I want people to know just how good this information is in your article. It’s interesting, compelling content. Your views are much like my own concerning this subject

Avatar_small
here 说:
2024年7月09日 16:39

The desire to make money online through the use of social platforms is perfectly normal. In order to achieve this quest, an optimal blogging system is required. A sound blogging system would allow its user adopt a systematic approach to quench his blogging endeavors. Writing is an interesting art if properly crafted. The more interesting fact is that anyone can write.

Avatar_small
토토마트 说:
2024年7月09日 16:40

You developed something that individuals could understand along with making the subject outstanding for every person. As a matter of fact, First of all let me tell you, you have got a great blog .I am interested in looking for more of such topics and would like to have further information

Avatar_small
check here 说:
2024年7月09日 16:40

Really satisfied with all the information I have found in this article. It gives immense knowledge on physical education, it is very helpful and quite generous to spread a good message. The author has done a brilliant job on summing all the points here. You just made a new fan with your writing skills.

Avatar_small
Research materials 说:
2024年7月09日 16:41

I at last discovered grand post here.I will get back here. I just added your blog to my bookmark districts. thanks.Quality presents is the major on welcome the guests to visit the site page, that is the thing that this site page is giving.I see something fascinating about your website, so I saved to bookmarks. Web webpage

Avatar_small
토토하이 说:
2024年7月09日 16:41

I'm always searching out a few unfastened kinds of stuff over the net. there are also some agencies which give unfastened samples. superb and interesting article. extraordinary matters you've got usually shared with us. thanks. simply hold composing this type of submitting

Avatar_small
토토하이 说:
2024年7月09日 16:41

I'm always searching out a few unfastened kinds of stuff over the net. there are also some agencies which give unfastened samples. superb and interesting article. extraordinary matters you've got usually shared with us. thanks. simply hold composing this type of submitting


登录 *


loading captcha image...
(输入验证码)
or Ctrl+Enter