04 2015 档案

摘要:为了方便,VBOX安装的Ubuntu,并在硬盘上创建了一个与Windows的共享文件夹sharefolder方便在两个系统之间传文件 但是经常发现的问题就是从sharefolder中拷贝文件到ubuntu中会出现很多毛病,比如说经常按了CTRL+C之后没有拷贝最新的文件(因为你必须在ubuntu自己 阅读全文
posted @ 2015-04-30 18:26 rldts 阅读(875) 评论(0) 推荐(0) 编辑
摘要:sudo chown -R <user-name> <folder-name> /* 其中-R的意思是recursive,你懂的,chown --help可以查看帮助信息 */ 或者你先使用命令su进入root权限,然后再直接使用如下命令也行: chown -R <user-name> <folde 阅读全文
posted @ 2015-04-30 18:16 rldts 阅读(3344) 评论(0) 推荐(0) 编辑
摘要:http://www.cnblogs.com/chengmo/archive/2010/10/21/1856577.html 阅读全文
posted @ 2015-04-29 10:05 rldts 阅读(146) 评论(0) 推荐(0) 编辑
摘要:代码如下:其中ZJ::open_max返回系统允许的打开的文件的最大个数#include "util.h"#include // int close(int fd);#include int main(void){ const long opmax = ZJ::open_max(); ... 阅读全文
posted @ 2015-04-29 00:40 rldts 阅读(669) 评论(0) 推荐(0) 编辑
摘要:其实我之前就遇到过这个问题,也强调过,GNU-G++在link阶段是依赖输入的.o或者.a文件的顺序的。如果顺序错误会导致undefined reference错误见这篇随笔:http://www.cnblogs.com/qrlozte/p/4137704.html刚才我遇到的问题是什么呢?代码de... 阅读全文
posted @ 2015-04-29 00:21 rldts 阅读(1097) 评论(0) 推荐(0) 编辑
摘要:原因:你把inline函数的implementation放到cpp文件里肯定要报这个错误正确的做法:把inline函数的声明和实现都放到header里,例如// declaration:return_type function_name(param_type1, param_type2, ...);... 阅读全文
posted @ 2015-04-27 16:04 rldts 阅读(1429) 评论(0) 推荐(0) 编辑
摘要:一句话:container就用mem_fun,container就用mem_fun_ref参考:http://www.cplusplus.com/reference/functional/mem_fun/http://www.cplusplus.com/reference/functional/me... 阅读全文
posted @ 2015-04-27 08:38 rldts 阅读(338) 评论(0) 推荐(0) 编辑
摘要:在看APUE Figure1.10的时候发现signal(SIGINT, sig_int)这里的sig_int直接用的函数名,但是看Thinking-in-C++ Vol.2的时候发现mem_fun(&Shape::draw)却对函数名进行了取地址操作,感觉有疑问就查了一下资料,下面的代码可以展示出... 阅读全文
posted @ 2015-04-24 16:15 rldts 阅读(934) 评论(0) 推荐(0) 编辑
摘要:#include "apue.h"#include static void sig_int(int); /* our signal-catching function */int main(int argc, char *argv[]){ printf("uid = %d, gid = %d\... 阅读全文
posted @ 2015-04-24 12:35 rldts 阅读(1773) 评论(0) 推荐(0) 编辑
摘要:一般写java都用的IDE,今天临时要测试一下JDK安装好没,就用了一下javac,结果各种不会用目录javac -help查到了有javac -sourcepath,他喵的我还以为这是查找sourcefile的选项,结果根本不是javac -sourcepath src com.zj.wksp.H... 阅读全文
posted @ 2015-04-20 20:23 rldts 阅读(370) 评论(0) 推荐(0) 编辑
摘要:刚才看到APUE(高级UNIX环境编程)里面的apue.h中有一行typedef void Sigfunc(int);没搞懂什么意思其实就是定义一个函数指针类型,等价于typedef void (*Sigfunc)(int)参考资料:http://blog.csdn.net/dingyuanpu/a... 阅读全文
posted @ 2015-04-19 13:20 rldts 阅读(990) 评论(0) 推荐(0) 编辑
摘要:参考资料: http://jingyan.baidu.com/article/2fb0ba40541a5900f2ec5f07.html http://zycao.com/virtualbox-ubuntu-vboxsguestadditions.html/comment-page-1 http:/ 阅读全文
posted @ 2015-04-19 12:53 rldts 阅读(917) 评论(0) 推荐(0) 编辑
摘要:今天看书,Thinking in c++ volume 2 "Adaptable function objects"里面作者说:Suppose, for example, that we want to make the function object gt_n, definedearlier in... 阅读全文
posted @ 2015-04-18 14:50 rldts 阅读(6045) 评论(0) 推荐(3) 编辑
摘要:参考资料:http://www.technoreply.com/how-to-install-sublime-text-2-on-ubuntu-12-04-unity/ 1.去Sublime Text官网下载32-bit linux的压缩包 // 64-bit的我反正用不了不知到为什么(报错:bas 阅读全文
posted @ 2015-04-18 00:24 rldts 阅读(483) 评论(0) 推荐(0) 编辑
摘要:2017-11-12更新 安装搜狗拼音: http://blog.csdn.net/iamplane/article/details/70447517 因为IBus在14.04中有些问题(见此随笔:http://www.cnblogs.com/qrlozte/p/5709546.html),所以我改 阅读全文
posted @ 2015-04-17 23:58 rldts 阅读(565) 评论(0) 推荐(0) 编辑
摘要: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 阅读(1582) 评论(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 阅读(1030) 评论(0) 推荐(0) 编辑
摘要:多文件程序的调试,例子:文件结构:/demo Makefile /src demo.cpp util.cpp /include util.h截图:-----------------------------------------------------------------... 阅读全文
posted @ 2015-04-16 13:46 rldts 阅读(460) 评论(0) 推荐(0) 编辑
摘要:Windows Programming必须了解的naming-convention,下面解释每个前缀/缩略词的含义,如果含义的解释一行放不下的,就把解释放在一个引用框里PrefixMeaningCSClass style optionpseg: psText; a pointer to the ch... 阅读全文
posted @ 2015-04-08 13:51 rldts 阅读(375) 评论(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 阅读(143) 评论(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 阅读(209) 评论(0) 推荐(0) 编辑
摘要:链接:http://www.cnblogs.com/BeyondAnyTime/archive/2012/05/23/2514964.html 阅读全文
posted @ 2015-04-02 09:26 rldts 阅读(130) 评论(0) 推荐(0) 编辑