上一页 1 ··· 13 14 15 16 17 18 19 20 21 ··· 47 下一页
摘要: 1. 打开VBOX(Oracle VM VirtualBox),启动Ubuntu 2. 点击"设备>安装增强功能" 3. 进入Ubuntu打开文件管理器,如下图 4. 输入root用户的密码,等待安装完毕后(出现什么Press Return to close this window),按ENTER完 阅读全文
posted @ 2015-04-17 23:30 rldts 阅读(1650) 评论(0) 推荐(0)
摘要: 输入ulimit -a 如果core file size为0,那就说明没有打开core dump,尽管你的程序crash的时候会显示core dumped,但实际上不会生成core file 输入ulimit -c 1024即可,其中1024是生成的core file的最大大小。这个值可以根据实际情 阅读全文
posted @ 2015-04-17 15:26 rldts 阅读(1034) 评论(0) 推荐(0)
摘要: 多文件程序的调试,例子:文件结构:/demo Makefile /src demo.cpp util.cpp /include util.h截图:-----------------------------------------------------------------... 阅读全文
posted @ 2015-04-16 13:46 rldts 阅读(477) 评论(0) 推荐(0)
摘要: Windows Programming必须了解的naming-convention,下面解释每个前缀/缩略词的含义,如果含义的解释一行放不下的,就把解释放在一个引用框里PrefixMeaningCSClass style optionpseg: psText; a pointer to the ch... 阅读全文
posted @ 2015-04-08 13:51 rldts 阅读(385) 评论(0) 推荐(0)
摘要: 来自Programming Windows 5th EditionThe WinMain function isgiven a type of WINAPI (as is every Windows function call defined in the header files), and th... 阅读全文
posted @ 2015-04-02 19:28 rldts 阅读(147) 评论(0) 推荐(0)
摘要: 这里有个demo,里面的Stack : private Stack,作者对此的解释如下The partial specialization for other pointer types derives from Stack privately, since we aremerely using S... 阅读全文
posted @ 2015-04-02 09:58 rldts 阅读(217) 评论(0) 推荐(0)
摘要: 链接:http://www.cnblogs.com/BeyondAnyTime/archive/2012/05/23/2514964.html 阅读全文
posted @ 2015-04-02 09:26 rldts 阅读(138) 评论(0) 推荐(0)
摘要: 关键是1.包含及其他的相关头文件2.在LINK指令中最起码要加上KERNEL32.LIB USER32.LIB GDI32.LIB(不需要制定其路径,因为NMAKE, CL和LINK都来自VS,这3个LIB文件都是默认配置好的),这三个LIB文件包含了所需的其他DLL的信息。当然,不止这三个,但这三... 阅读全文
posted @ 2015-03-31 20:07 rldts 阅读(705) 评论(1) 推荐(0)
摘要: 否则printf要出问题 阅读全文
posted @ 2015-03-31 11:34 rldts 阅读(721) 评论(0) 推荐(0)
摘要: 一个BAT拷贝程序::: For example: SRC_PATH = C:\hello\world:: and DEST_PATH = E:\another:: this program will first delete contents of DEST_PATH from the disk... 阅读全文
posted @ 2015-03-29 01:44 rldts 阅读(209) 评论(0) 推荐(0)
上一页 1 ··· 13 14 15 16 17 18 19 20 21 ··· 47 下一页