10 2013 档案

摘要:这次写的线程的同步与互斥,不依赖于任何系统,完全使用了C++11标准的新特性来写的,就连线程函数都用了C++11标准的lambda表达式。/* * thread_test.cpp * * Copyright 2013 叶剑飞 * * 编译命令: * g++ thread_test.cpp -o thread_test -Wall -std=c++11 -pedantic-errors -pthread */#include #include #include #include #include using namespace std;int main(void){ const... 阅读全文
posted @ 2013-10-28 13:30 叶剑飞Victor 阅读(3234) 评论(0) 推荐(0) 编辑
摘要:zip格式压缩: zip -r [目标文件名].zip [原文件/目录名]解压: unzip [原文件名].zip注:-r参数代表递归tar格式(该格式仅仅打包,不压缩)打包:tar -cvf [目标文件名].tar [原文件名/目录名]解包:tar -xvf [原文件名].tar注:c参数代表create(创建),x参数代表extract(解包),v参数代表verbose(详细信息),f参数代表filename(文件名),所以f后必须接文件名。tar.gz格式方式一:利用前面已经打包好的tar文件,直接用压缩命令。压缩:gzip [原文件名].tar解压:gunzip [原文件名].tar. 阅读全文
posted @ 2013-10-04 16:46 叶剑飞Victor 阅读(36692) 评论(0) 推荐(3) 编辑