#define _CRT_SECURE_NO_WARNINGS
#include <iostream>
#include <string>
using namespace std;
class Parent {
public:
Parent() {};
Parent(int a) : _a(a) {};
~Parent() {};
virtual void print() {
cout << "Parent: a=" << _a << endl;
};
protected:
int getA() {
return _a;
}
private:
int _a;
};
class Child: public Parent {
public:
Child() {};
Child(int a, int b) :Parent(a), _b(b) {};
~Child() {};
virtual void print() {
cout << "Child: a="<< this->getA() <<", b=" << this->_b << endl;
};
protected:
private:
int _b;
};
void print(Parent *p) {
p->print();
}
void a() {
cout << "213" << endl;
}
int main(int argc, char* argv[]) {
Parent *p = new Parent(10);
Parent *c = (Parent *)new Child(20, 30);
typedef void(Func1)(Parent *p);
int *ptr = (int *)( ( (int *)c )[0] );
Func1 *f = (Func1 *)( *(ptr + 0) );
f(new Child(20, 40));
return 0;
}
C++ 如何验证this指针与ptr指针在类中的存在
最后编辑于 :
©著作权归作者所有,转载或内容合作请联系作者
- 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
- 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
- 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...