引言: 1. 下载platform4.2 安装,在它的public目录中
摘要:一、thread类的创建:
unit thread;{ 线程类的创建 编译环境: windows 2003 sever delphi 7.0 enterprise}interfaceuses classes,sysutils,stdctrls;type tb = class(tthread) private i :integer; fedt :tedit; procedure update ; ......
摘要: 在学习stl的过程中,我发现了一个熟悉的面孔——vector。之所以熟悉,是因为vector是java核心类库中的collection container的一种,然而在我近一年的开发历程当中,我从来都没有使用过vector,甚至对其几乎是一无所知,只是知道这是jdk中遗留的collection container,而且在开发过程中也不提倡使用它。花心的我在看着stl的ve......
如何实现在wince中加入media player
2. 将这个源程序导入evc中,编译就可以了 【推荐阅读:283项专利可对LINUX提起诉讼 微软】
1. 下载platform4.2 安装,在它的public目录中有一个playwnd源程序
摘要: 重返c++的世界,自然离不开标准库,首当其冲的是std::string了。而我这两天硬是在string的面前不断丢脸。sigh~~ std::string hello = "hello"; std::string message = hello + ", world" + "!"; std::string anothermessage......