使用Multipath进行多链路聚合并对聚合后的设备固定命名 1、启用Multipath: (1)启动multipathd服务 #service multipathd start 或者 #/etc/init.d/multipathd start (2)修改multipath配置文件/etc/mult ...
分类:
其他好文 时间:
2016-11-24 09:24:55
阅读次数:
175
A friend is one who knows you and loves you just the same. 朋友就是懂你并爱你的人。 Leave nothing for tomorrow which can be done today. 今天能做的,就不要拖到明天。 Remember th ...
分类:
其他好文 时间:
2016-11-23 07:19:22
阅读次数:
144
特殊字符:^ $ * + ? { [ ] \ | ( ) regular expression 正则表达式 import re 简单的regexp p = re.compile("abc") if p.match("abc") : print "match" 上例中首先生成一个pattern(模式) ...
分类:
其他好文 时间:
2016-11-18 11:56:41
阅读次数:
178
为类重载<<与>>这两个运算符时,重载函数必须为该类的友元函数。 当友元不能被继承,故不能当作虚函数,无法使用多态。 可以用以下结构实现友元与虚函数的组合。 1 class base { 2 public: 3 friend ostream & operator << (ostream &o, co ...
分类:
编程语言 时间:
2016-11-17 19:24:48
阅读次数:
228
本节内容: AJAX操作相关问题 确认 AJAX操作相关问题 执行一个AJAX调用在现在的应用里非常常见,尤其在SPAs(Single-Page Applications 单页面应用)里,它几乎是唯一与服务器通信的方式。一个AJAX调用由几个重复的步骤组成: 在客户端,基本上,javascript代 ...
分类:
编程语言 时间:
2016-11-16 22:13:31
阅读次数:
433
292. Nim Game You are playing the following Nim Game with your friend: There is a heap of stones on the table, each time one of you take turns to remo ...
分类:
其他好文 时间:
2016-11-16 22:07:10
阅读次数:
241
A. Anton and Danik Anton likes to play chess, and so does his friend Danik. Once they have played n games in a row. For each game it's known who was t ...
分类:
其他好文 时间:
2016-11-16 14:36:32
阅读次数:
279
一、栈 栈(stack)又名堆栈,它是一种运算受限的线性表。其限制是仅允许在表的一端进行插入和删除运算。这一端被称为栈顶,相对地,把另一端称为栈底。向一个栈插入新元素又称作进栈、入栈或压栈,它是把新元素放到栈顶元素的上面,使之成为新的栈顶元素;从一个栈删除元素又称作出栈或退栈,它是把栈顶元素删除掉, ...
分类:
其他好文 时间:
2016-11-14 01:54:11
阅读次数:
280