在线笔记
全部博文(596)
发布时间:2013-08-01 10:15:35
提交的文件或目录是其他SVN的东西,即下面有.svn的目录,删除才能提交#find . -mindepth 2 -name '.svn' -exec rm -rf '{}' \;......【阅读全文】
发布时间:2013-08-01 09:26:17
CPPFLAGS is supposed to be for flags for the C PreProcessor; CXXFLAGS is for flags for the C++ compiler.The default rules in make (on my machine, at any rate) pass CPPFLAGS to just about everything,CFLAGS is only passed when compiling and linking C, and&.........【阅读全文】
发布时间:2013-07-22 22:21:39
$ls /dev/sd*$ fdisk /dev/sdb n 新建 p ... w 写入$mkfs.ext4 /dev/sdb1$vi /etc/fstab/dev/sdb1 /work ext4 rw 0 0$reboot......【阅读全文】
发布时间:2013-07-17 17:49:16
这样的函数应该如何声明和定义。 void print(int value, int base)的参数base指定一个默认的参数值10,.hvoid print(int value, int base = 10);.cppvoidprint(int value, int base){}因为编译器是根据函数原型声明确定函数调用是否合法.........【阅读全文】