对象的模型

 

#include<fstream>
using namespace std;

class Widget
{
public:
 Widget()
 {
  ++count;
 } 
 ~Widget()
 {
  --count;
 }
 int numWidgets()
 {
  return count;
 }
 int* Widgets()
 {
  return &count;
 } 
private:
 static int count; 
};

int Widget::count = 0;

int main()
{
 ofstream fout("result.txt");
 Widget w, x;
 fout << &w << " " << &x << endl;
 fout << w.Widgets() << " " << x.Widgets() << endl;
 fout << "Now there are " << w.numWidgets() <<  " Widgets \n";
 {
  Widget w, x, y, z;
  fout << "Now there are " << w.numWidgets() <<  " Widgets \n";
 }
 Widget y;
 fout << "Now there are " << w.numWidgets() <<  " Widgets \n";
 return 0;
}

 

对象public是属于类的。该类的每个对象共用一个副本。

private是属于私有的,是属于对象的,是标志对象独立和存在的属性。

所以对对象取地址,得到的是private的地址。

但是对每个对象取public变量或函数的地址,都是相同的。

对象的虚函数地址,或者跟继承有关的,指针出现在对象私有第一个属性之前的地址。

 

0x241fecf 0x241febf
0x416008 0x416008
Now there are 2 Widgets
Now there are 6 Widgets
Now there are 3 Widgets

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值