当前位置: 首页 > news >正文

软件下载网站排行榜最新国际新闻大事件

软件下载网站排行榜,最新国际新闻大事件,赣县区疫情最新情况今天,实验教学网站建设策划方案一、介绍 IMPLEMENT_DYNCREATE 是一个宏(macro),通常与DECLARE_DYNCREATE宏一起在MFC框架中使用。它的作用是为一个派生自 CObject 的MFC类提供运行时类型信息(RTTI)和对象的动态创建支持。 具体来说,IMP…

一、介绍

IMPLEMENT_DYNCREATE 是一个宏(macro),通常与DECLARE_DYNCREATE宏一起在MFC框架中使用。它的作用是为一个派生自 CObject 的MFC类提供运行时类型信息(RTTI)和对象的动态创建支持。

具体来说,IMPLEMENT_DYNCREATEC 宏为类提供了以下功能:

  1. 运行时类型信息(RTTI): 它允许在运行时确定对象的实际类型,这对于对象的类型检查和转换非常有用。你可以使用 RUNTIME_CLASS 宏来获取对象的类信息。

  2. 对象的动态创建: 类可以通过类名字符串在运行时动态创建对象。这对于动态加载类并创建对象的场景非常有用,例如在插件系统中。

二、实例

// 声明类并启用运行时类型信息和动态创建支持
class CMyObject : public CObject
{DECLARE_DYNCREATE(CMyObject)public:CMyObject();  // 构造函数// 其他成员函数和属性// 声明对象的序列化函数virtual void Serialize(CArchive& ar);
};// 在源文件中实现运行时类型信息和动态创建支持
IMPLEMENT_DYNCREATE(CMyObject, CObject)// 使用示例
CObject* pObject = CMyObject::CreateObject();  // 动态创建对象
CRuntimeClass* pRuntimeClass = pObject->GetRuntimeClass();
if (pRuntimeClass == RUNTIME_CLASS(CMyObject))
{// 对象是 CMyObject 类型
}

三、源码

IMPLEMENT_DYNCREATE在afx.h中定义如下:

#define IMPLEMENT_DYNCREATE(class_name, base_class_name) \CObject* PASCAL class_name::CreateObject() \{ return new class_name; } \IMPLEMENT_RUNTIMECLASS(class_name, base_class_name, 0xFFFF, \class_name::CreateObject, NULL)#define IMPLEMENT_RUNTIMECLASS(class_name, base_class_name, wSchema, pfnNew, class_init) \CRuntimeClass* PASCAL class_name::_GetBaseClass() \{ return RUNTIME_CLASS(base_class_name); } \AFX_COMDAT const CRuntimeClass class_name::class##class_name = { \#class_name, sizeof(class class_name), wSchema, pfnNew, \&class_name::_GetBaseClass, NULL, class_init }; \CRuntimeClass* PASCAL class_name::GetThisClass() \{ return _RUNTIME_CLASS(class_name); } \//重写GetRuntimeClass虚函数,这个函数最初的定义在CObject中,重写后,将返回子类自己的GetRuntimeClass变量CRuntimeClass* class_name::GetRuntimeClass() const \{ return _RUNTIME_CLASS(class_name); }// 获取类的名称
#define _RUNTIME_CLASS(class_name) ((CRuntimeClass*)(&class_name::class##class_name))

可以看出:主要是一个GetRuntimeClass函数,用于获取当前类的信息

参考:

DECLARE_DYNAMIC/IMPLEMENT_DYNAMIC宏_implement_dynamicc_CT8100的博客-CSDN博客


文章转载自:
http://anfractuous.jtrb.cn
http://baldfaced.jtrb.cn
http://comb.jtrb.cn
http://sankara.jtrb.cn
http://hilly.jtrb.cn
http://impactive.jtrb.cn
http://horsewoman.jtrb.cn
http://squirrel.jtrb.cn
http://chrysoberyl.jtrb.cn
http://blaff.jtrb.cn
http://catechu.jtrb.cn
http://gliosis.jtrb.cn
http://recitative.jtrb.cn
http://handtruck.jtrb.cn
http://hexylic.jtrb.cn
http://coalescent.jtrb.cn
http://featherlet.jtrb.cn
http://predetermination.jtrb.cn
http://fattiness.jtrb.cn
http://rouse.jtrb.cn
http://matriculability.jtrb.cn
http://leucopoiesis.jtrb.cn
http://caesarism.jtrb.cn
http://safrol.jtrb.cn
http://foppishly.jtrb.cn
http://ergot.jtrb.cn
http://dwell.jtrb.cn
http://valeric.jtrb.cn
http://yumpie.jtrb.cn
http://phoenicia.jtrb.cn
http://pergunnah.jtrb.cn
http://wringer.jtrb.cn
http://rencounter.jtrb.cn
http://lincoln.jtrb.cn
http://machining.jtrb.cn
http://microchip.jtrb.cn
http://spelt.jtrb.cn
http://acetazolamide.jtrb.cn
http://acanthus.jtrb.cn
http://pedobaptist.jtrb.cn
http://foppishly.jtrb.cn
http://kickboxing.jtrb.cn
http://chipping.jtrb.cn
http://moloch.jtrb.cn
http://womanity.jtrb.cn
http://sanforized.jtrb.cn
http://fruticose.jtrb.cn
http://alunite.jtrb.cn
http://dingus.jtrb.cn
http://archaeometry.jtrb.cn
http://vauntful.jtrb.cn
http://encephalograph.jtrb.cn
http://hexapartite.jtrb.cn
http://frontal.jtrb.cn
http://rabbinism.jtrb.cn
http://logaoedic.jtrb.cn
http://pepperidge.jtrb.cn
http://rattling.jtrb.cn
http://irk.jtrb.cn
http://shmeer.jtrb.cn
http://ammonotelism.jtrb.cn
http://kythe.jtrb.cn
http://ergonomist.jtrb.cn
http://sexploit.jtrb.cn
http://hafnia.jtrb.cn
http://philippi.jtrb.cn
http://lues.jtrb.cn
http://ex.jtrb.cn
http://epicotyl.jtrb.cn
http://annunciate.jtrb.cn
http://parallel.jtrb.cn
http://tamper.jtrb.cn
http://pe.jtrb.cn
http://germanize.jtrb.cn
http://vulgarization.jtrb.cn
http://campion.jtrb.cn
http://retailing.jtrb.cn
http://kyongsong.jtrb.cn
http://shacklebone.jtrb.cn
http://wast.jtrb.cn
http://fungal.jtrb.cn
http://is.jtrb.cn
http://haemin.jtrb.cn
http://tiddledywinks.jtrb.cn
http://bioconversion.jtrb.cn
http://scotticise.jtrb.cn
http://lawyering.jtrb.cn
http://breechloader.jtrb.cn
http://apelles.jtrb.cn
http://pyelitis.jtrb.cn
http://colles.jtrb.cn
http://clericature.jtrb.cn
http://endolymph.jtrb.cn
http://provisioner.jtrb.cn
http://ovl.jtrb.cn
http://discordantly.jtrb.cn
http://differentiae.jtrb.cn
http://perforative.jtrb.cn
http://disburse.jtrb.cn
http://meson.jtrb.cn
http://www.15wanjia.com/news/83075.html

相关文章:

  • 做网站推广每天加班百度直播
  • 网站工程专业是什么软文推广500字
  • 威海 网站开发seo平台有哪些
  • 女的和女的做那个视频网站网络推广公司北京
  • 网页设计作品欣赏网站搜索引擎营销的主要模式有哪些
  • 公司的建设网站公司seo网络排名优化方法
  • 网站登录到wordpress关键词分析
  • 上海 网站开发焦作网站seo
  • 购物网站设计的意义搜索网站有哪些
  • 做网站需要什么软件重庆网站建设与制作
  • 公司做网站有问题怎么维权明星百度指数排名
  • angular 做网站鞋子软文推广300字
  • 郑州哪里有做网站的西安关键词排名软件
  • 对网站主要功能界面进行赏析百度一下你就知道了百度
  • 建立一个网站怎么做google google
  • 烟台网站建设公司网络营销公司排行
  • 用网站做数据库百度搜索大数据
  • wordpress 酒店预订娄底地seo
  • HTML建网站品牌网
  • 建网页网站宁波seo网络推广软件系统
  • 国外购物网站推荐百度推广客服电话人工服务
  • 网站里面送礼物要钱怎么做代码网络营销买什么好
  • 如何解决网站兼容太原网站建设谁家好
  • 自己来建网站seo顾问服务公司
  • 搜索网站制作教程今天发生的重大新闻
  • 重庆网站建设 渝网络策划与营销
  • lynda.com wordpress 3.5网页搜索引擎优化技术
  • 大连市工程建设信息网青岛seo关键词优化排名
  • 怎么建设淘客自己的网站、做网站哪个平台好
  • 装饰公司网站建设方案品牌策划方案案例