C++中将对象this转换成unsigned char指针
2020-12-13 05:28
标签:name 例程 示例 add 转换 typedef lob address public 此处是可以将对象this转换成unsigned char指针的。adress的值就是对象this的地址。 C++中将对象this转换成unsigned char指针 标签:name 例程 示例 add 转换 typedef lob address public 原文地址:https://www.cnblogs.com/simoncook/p/11141245.html示例程序
// ---CodeBlob.h---
#ifndef CODEBLOB_H_
#define CODEBLOB_H_
class CodeBlob {
private:
const char* _name;
int _size;
public:
CodeBlob();
void printName();
void printSize();
void setSize(int size);
virtual ~CodeBlob();
};
#endif /* CODEBLOB_H_ */
// ---CodeBlob.cpp---
#include
文章标题:C++中将对象this转换成unsigned char指针
文章链接:http://soscw.com/essay/31082.html