onlyou13

  博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理

2013年11月22日

摘要: 1、类和struct的区别用class和struct关键字定义类的唯一差别在于默认访问权限:默认情况下,struct的成员为public(因此可以省略public关键字),而class的成员为private。2、在C++中每当函数返回时,都会清理栈。局部变量和函数参数存放在栈中。只有到程序结束时候才会清理堆(java中自动清理),所以使用完堆内存时,程序员需要负责将其释放。如果在函数中预留堆中的内存,在函数返回后,该内存仍可用。当使用new关键字时候,程序会返回一个地址,因此只能用指针类型接收。注意用完之后要手动delete掉。3、导致内存泄露的另一种情形是,没有释放指针指向的内存就直接给它重 阅读全文
posted @ 2013-11-22 15:25 onlyou13 阅读(107) 评论(0) 推荐(0) 编辑

摘要: 1 unit Unit1; 2 3 interface 4 5 uses 6 Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs, 7 StdCtrls; 8 9 type10 TForm1 = class(TForm)11 Edit1: TEdit;12 Edit2: TEdit;13 Edit3: TEdit;14 Edit4: TEdit;15 Edit5: TEdit;16 Edit6: TEdit;17 Label1... 阅读全文
posted @ 2013-11-22 11:32 onlyou13 阅读(193) 评论(0) 推荐(0) 编辑

摘要: 1.GetMessageExtraInfo The GetMessageExtraInfo function retrieves the extra message information for the current thread. Extra message information is an application- or driver-defined value associated with the current thread's message queue.Syntax LPARAM GetMessageExtraInfo(VOID);Return Value The 阅读全文
posted @ 2013-11-22 09:44 onlyou13 阅读(1220) 评论(0) 推荐(0) 编辑