摘要: 转载自:http://blog.csdn.net/wuyigong111/article/details/17410661,进行部分修改 创建一个用户 sgmm,并在其用户目录里面安装 jdk和tomcat,安装过程如下。 一、增加 sgmm 用户和 sgmm 组 [root@lnx_test ~]# groupadd sgmm [root@lnx_test ~]# useradd -d /h... 阅读全文
posted @ 2015-07-16 17:09 codeplayplus 阅读(4901) 评论(0) 推荐(0) 编辑
摘要: 简述:改变序列算法,参见http://www.cplusplus.com/reference/algorithm/?kw=algorithm待解决问题:iterator_traits、std::move/*template BidirectionalIterator partition (Bidir... 阅读全文
posted @ 2015-07-13 19:12 codeplayplus 阅读(415) 评论(0) 推荐(0) 编辑
摘要: 简述:ctime头文件中的4中与时间相关的数据类型头文件中定义了4种与时间有关的数据类型,如下:clock_tsize_ttime_tstruct tmclock_tClock type[时钟类型]Alias of a fundamental arithmetic type capable of r... 阅读全文
posted @ 2015-07-09 21:45 codeplayplus 阅读(2986) 评论(0) 推荐(0) 编辑
摘要: 简述:printf、sprintf函数转载自http://www.cnblogs.com/adslg/archive/2008/08/22/1274164.html 部分进行了修改,参考http://www.cplusplus.com/reference/cstdio/printf/?kw=prin... 阅读全文
posted @ 2015-07-09 17:17 codeplayplus 阅读(261) 评论(0) 推荐(0) 编辑
摘要: 概述:不变序列算法,参见http://www.cplusplus.com/reference/algorithm//*std::for_eachtemplate Function for_each (InputIterator first, InputIterator last, Funct... 阅读全文
posted @ 2015-07-05 20:31 codeplayplus 阅读(210) 评论(0) 推荐(0) 编辑
摘要: 首先我们看一下函数指针。函数指针是指向函数的指针变量,在编译程序时,每一个函数都有一个入口地址,而指向这个函数的函数指针便指向这个地址。函数指针的作用主要有两个:用作调用函数和用作函数的参数。函数指针用作调用函数的实例如下:#include using namespace std;typedef v... 阅读全文
posted @ 2015-06-28 19:28 codeplayplus 阅读(190) 评论(0) 推荐(0) 编辑
摘要: template class bitset;BitsetA bitset stores bits (elements with only two possible values: 0 or 1, true or false, ...).[bitset存储位(元素只能为两种可能的数值,即0或1,tr... 阅读全文
posted @ 2015-06-07 16:01 codeplayplus 阅读(316) 评论(0) 推荐(0) 编辑
摘要: template , class Compare = less > class priority_queue;Priority queuePriority queues are a type of container adaptors, specifically designed such that... 阅读全文
posted @ 2015-06-06 21:29 codeplayplus 阅读(335) 评论(0) 推荐(0) 编辑
摘要: 参见http://www.cplusplus.com/reference/map/map/template , // map::key_compare class Alloc = allocator > // map::allocator_type > class map;Maps are asso... 阅读全文
posted @ 2015-06-06 20:29 codeplayplus 阅读(297) 评论(0) 推荐(0) 编辑
摘要: 参见http://www.cplusplus.com/reference/stack/stack/ template> class stack; LIFO stack Stacks are a type of container adaptor, specifically designed to o... 阅读全文
posted @ 2015-06-06 12:03 codeplayplus 阅读(388) 评论(1) 推荐(0) 编辑