try it, then you know it____________just do it , as love easily fade.

一次只有一个目标,步子迈小些,抑制一次实现所有功能的冲动。 过程如何结果就如何,行动是欢喜的,不管是兴奋还是沮丧的情绪都对结果无益。贵在持之以恒

导航

2013年9月8日 #

cursor

摘要: BeginWaitCursor(); // display the hourglass cursor // do some lengthy processing Sleep(3000); EndWaitCursor(); // remove the hourglass cursorstrangely: Note, in my vc++6.0, when only apply BeginWaitCursor() in a subroutine; useless, nothing change, 阅读全文

posted @ 2013-09-08 18:08 吾一 阅读(241) 评论(0) 推荐(0) 编辑

memory allocation

摘要: 1 malloc与free是C++/C语言的标准库函数,new/delete是C++的运算符。2,malloc, 必须 包含头文件3,nt* p_scalar =newint(5);//Does not create 5 elements, but initializes to 5int* p_ar... 阅读全文

posted @ 2013-09-08 16:13 吾一 阅读(217) 评论(0) 推荐(0) 编辑