搜索资源列表
Addison.Wesley.Effcient.C++ProgrammingTechniques.
- This book focuses on combining C++ s power and flexibility with high performance and scalability, resulting in the best of both worlds. Specific topics include temporary objects, memory management, templates, inheritance, virtual functions, inlin
TrendCurve
- 一个历史曲线显示控件,包含界面动态刷新,时间显示,曲线坐标动态放大,虚拟显示内存等等技术,是一个比较完善的C语言 ACTIVEX 控件-Curve shows a historical control, including the dynamic interface refresh, time display, zoom in curvilinear coordinates dynamic, virtual memory, and so display technology, is a more
COM-technology-insider
- COM接口可以通过多种语言实现,接口有一个二进制的标准。也就是说,表示一个接口的内存块必须具有一定的结构。客户程序用一个指向接口数据结构的指针来调用接口成员函数。接口指针实际上又指向一个指针,这第二个指针指向一组函数,称为接口寒暑表。接口函数表中每项为4个字节长的函数指针。 在C++中,可以使用抽象基类实现COM接口。抽象基类的内存结构跟接口的内存结构正好完全相同。抽象基类的指针指向一个vtbl指针,该指针指向虚拟函数表。由于一个COM组件可以支持任意数目的接口,因此对于这类组件,我们使用抽