--js $(document).ready(function(){ //Set default open/close settings$('.acc_container').hide(); //Hide/close all containers$('.acc_trigger:first').add ...
分类:
Web程序 时间:
2016-12-09 11:58:27
阅读次数:
215
搭建环境及说明Centos6.864位关闭selinux使SELINUX=disabled最好是centos7内核为3.0版本———————————————————————以下为操作步骤及详解————————————————————1.docker安装与启动yuminstall-yepel-release#centos安装扩展源yuminstall..
分类:
其他好文 时间:
2016-12-08 14:13:14
阅读次数:
1392
Learn the benefits of running one-off, short-lived Docker containers. Short-Lived containers are useful to execute one-line commands or setup schedule ...
分类:
其他好文 时间:
2016-12-02 07:56:02
阅读次数:
106
In this lesson, we'll find out the basics of running Docker containers. We'll go over how to download images from Docker Hub, what happens when you st ...
分类:
其他好文 时间:
2016-12-02 07:43:00
阅读次数:
183
C++Boost2容器在线文档:http://www.boost.org/doc/离线文档:解压Boost压缩包,浏览boost_1_62_0/boost_1_62_0/libs/libraries.htm#Containers
目录:
Boostany容器
引用与指针复习,引用并不会退化
boost.tuple,类似STL的pair键值对,但是tuple可以装10种不同的任意数据类型
tuple..
分类:
编程语言 时间:
2016-12-02 03:39:33
阅读次数:
193
Iterators设计将Containers与Algorithms彼此独立,降低耦合性,使两者相互正交.而Iterator作为两者的中间层使得即使其中一方接口改变也能通过改写Iterators转换数据从而使其更改和使用更加安全和方便. Iterators是一种smart pointer,对opera ...
分类:
其他好文 时间:
2016-11-29 07:07:10
阅读次数:
166
对于STL中的依靠比较排序的容器,均提供了一个模板参数来传递比较函数,默认的为std::less<>。 查阅Containers - C++ Reference可以看到典型的使用比较函数的容器有 分别是优先队列、集合、映射,当然multiset和multimap也一样。 这里以优先队列为例,分别给出 ...
分类:
其他好文 时间:
2016-11-26 17:13:56
阅读次数:
403
LinearLayout:线性布局 LinearLayout是线性布局控件,它包含的子控件将以横向或竖向的方式排列, 按照相对位置来排列所有的widgets或者其他的containers,超过边界时,某些控件将缺失或消失。 因此一个垂直列表的每一行只会有一个widget或者是container,而不 ...
分类:
移动开发 时间:
2016-11-22 17:15:23
阅读次数:
170
STL六大部件: Containers(容器) Allocators(分配器) Algorithms(算法) Iterators(迭代器) Adapters(适配器) Functors仿函数) STL的主体在于容器,其他五个部件共同实现了容器的各种功能 ...
分类:
其他好文 时间:
2016-11-21 22:46:44
阅读次数:
169