码迷,mamicode.com
首页 > 编程语言 > 详细

[c++] Collection of key and difficult points

时间:2015-03-17 19:54:48      阅读:173      评论:0      收藏:0      [点我收藏+]

标签:

Operator Overload

1. 在重载下标运算符时(数组符号):不可重载为友元函数,必须是非static类的成员函数。 why



2. overload ++ 时,如果是:
   int a; ++a; ++在前面时,怎么办?
   答:counter counter::operator ++(int)


3. class F {
      public:
         double operator () (double x, double y) const; 
   };
   为什么const放在了后面,感觉有点怪,难道不是:
         const double operator() (double x, double y); or
         double const operator() (double x, double y); 
 

 

4. 关于虚析构函数,问:基类中的析构函数一般都设置为virtual,是么?不设置的话,会出现什么问题?

 

 
 

 消息传递

 
对象之间通过消息传递方式进行通信。  消息传递原是一种与通信有关的概念,OOP使得对象具有交互能力的主要模型就是消息传递模型。
类之间的消息传递 最终在编译阶段转变为函数的参数。
 
 

[c++] Collection of key and difficult points

标签:

原文地址:http://www.cnblogs.com/jesse123/p/4292133.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!