一、引子 Delphi运行期间,一个对象变量实际上是一个四字节指针,指向内存中此对象具体占据的一片区域,而区域的首个四字节又是一个指针指向该类的VMT,所有该类的实例对象的区域的首四字节指针都指向同一个VMT,故此一个VMT基本上就可以代表类本身。而每个类的VMT前面(VMT指针所指处的负偏移处)保 Read More
posted @ 2016-03-21 22:33 findumars Views(712) Comments(0) Diggs(0)
Linux多媒体三剑客:GIMP,Inkscape,Blender3DBlender基金会制作的开源微电影Sintel:http://www.sintel.org/about电影采用Creative Commons Attribution 3.0授权.整个电影的制作,完全采用开源软件.使用64位Li Read More
posted @ 2016-03-21 22:21 findumars Views(1955) Comments(0) Diggs(0)
HWND hIpEdit; void __fastcall TForm2::FormCreate(TObject *Sender) { hIpEdit = CreateWindow(WC_IPADDRESS, NULL, WS_CHILD | WS_VISIBLE, 10, 10, 135, 47, Read More
posted @ 2016-03-21 22:00 findumars Views(719) Comments(0) Diggs(0)
RAD Delphi XE/10 Seattle 安装IOS、OSX环境安装,IOS模拟器,MAC X 真机可以调试 http://community.embarcadero.com/blogs/entry/rad-studio-trial-fully-testeable http://www.em Read More
posted @ 2016-03-21 21:53 findumars Views(1182) Comments(0) Diggs(0)
不是只有实例才有VMT,举个例子,各实例的VMT地址是相同的: 再和类的VMT比较: 这也相当于说,类的第一项元素就是VMT,而VMT的第一项内容是一个地址,它是指向一个函数的指针。 http://blog.csdn.net/linzhengqun/article/details/1755493 Read More
posted @ 2016-03-21 19:19 findumars Views(325) Comments(0) Diggs(0)