许明会的计算机技术主页

Language:C,C++,.NET Framework(C#)
Thinking:Design Pattern,Algorithm,WPF,Windows Internals
Database:SQLServer,Oracle,MySQL,PostSQL
IT:MCITP,Exchange,Lync,Virtualization,CCNP

导航

2010年12月3日

虚函数

摘要: 代码Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--//[7/29/2010xuminghui]/*基类的指针指向派生类的对象,呼叫某函数Func时:1、若基类的Func非虚函数,调用基类的Func函数2、若基类的Func是虚函数1)、若派生类重写Fu... 阅读全文

posted @ 2010-12-03 09:09 许明会 阅读(343) 评论(0) 推荐(0)

运行时类型识别 RTTI

摘要: 代码Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--#include<iostream>usingnamespacestd;classgraphic{public:virtualvoiddisplay()=0;};classGIF:publ... 阅读全文

posted @ 2010-12-03 09:08 许明会 阅读(156) 评论(0) 推荐(0)

变量及对象的作用域

摘要: 代码Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--#include<iostream>usingnamespacestd;classScope{public:Scope(constchar*infor);~Scope();private:... 阅读全文

posted @ 2010-12-03 09:08 许明会 阅读(162) 评论(0) 推荐(0)

对象切割 ObjectSlicing

摘要: /*TestONE:CDocument::func()CMyDoc::Serialize()TestTWO:CDocument::func()CMyDoc::Serialize()TestThree:CDocument::func()CMyDoc::Serialize()TestFour:CDocument::func()CDocument::Serialize()*/#include<iostream>usingnamespacestd;classCObject{public:virtualvoidSerialize(){cout<<"CObject::Se 阅读全文

posted @ 2010-12-03 09:07 许明会 阅读(254) 评论(0) 推荐(0)

类的继承和封装

摘要: 代码Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--#include<string.h>classCEmployee{private:charm_name[30];public:CEmployee(){};//此处,必须实现,以前C++版本... 阅读全文

posted @ 2010-12-03 09:06 许明会 阅读(230) 评论(0) 推荐(0)

抽象类

摘要: 代码Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--/**抽象类里面可以有非纯虚函数;抽象类的派生类必须重写抽象类的纯虚函数,否则这一派生类也是抽象类*/#include<iostream>usingnamespacestd;classCA... 阅读全文

posted @ 2010-12-03 09:05 许明会 阅读(229) 评论(0) 推荐(0)

游戏外挂最基本的按键模拟

摘要: 玩魔兽世界的时候,很多小号找大号带副本升级。台服在客户端不活动的情况下会强迫用户下线,导致尽管小号无事可做,还要在屏幕下等待。于是自己开发一个程序,让游戏角色保持活动,不至于下线。代码Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--///本程序僅僅監控... 阅读全文

posted @ 2010-12-03 09:02 许明会 阅读(1376) 评论(0) 推荐(0)