Welcome to StackEdit! Hello, I am your first
Markdown document within StackEdit1. Don’t delete me, I can be helpful. I can be
recovered anyway in the ...
分类:
其他好文 时间:
2014-05-19 17:50:48
阅读次数:
407
第十一章 运算符重载1. 运算符重载2. 在成员函数中实现自加3. 重载前置自加运算符返回类型
operator@(参数表){}@代表要重载的运算符对象运算符重载不同于变量运算符重载void
operator++(){++n;}++i;//等价于i.operator++();若i是变量 则++i就是...
分类:
其他好文 时间:
2014-05-19 17:00:08
阅读次数:
304
C++ 类型转换的特殊用法下面是ossimLsrRay.h中的一个例子/*!* CASTING
OPERATOR: ossimEcefRay()* Looks like a constructor for an ossimEcefRay but is an
operation on this* ob...
分类:
编程语言 时间:
2014-05-19 08:17:12
阅读次数:
398
今天看资料时看到这样一段代码,记录下 public static bool operator
==(EntityBase entity1, EntityBase entity2) { if ((object)entity1 == null
&& (o...
分类:
其他好文 时间:
2014-05-18 18:51:59
阅读次数:
209
【题目】
Divide two integers without using multiplication, division and mod operator.
【题意】
计算两个数的商,不能使用乘、除、取余操作
【思路】
用加法,确定多少除数相加其和恰好<=被除数
为了提高算法效率,利用贪心思想,采用滚雪球式的翻倍叠加策略,使和快速逼近被除数
集中特殊情况需要注意:
1. 结果是负数
...
分类:
其他好文 时间:
2014-05-18 10:42:00
阅读次数:
259
Remove Duplicates from Sorted List IGiven a
sorted linked list, delete all duplicates such that each element appear only
once.For example,Given 1->1->...
分类:
其他好文 时间:
2014-05-18 01:41:31
阅读次数:
361
在讲完之后HFile和HLog之后,今天我想分享是Put在Region
Server经历些了什么?相信前面看了《HTable探秘》的朋友都会有印象,没看过的建议回去先看看,Put是通过MultiServerCallable来提交的多个Put,好,我们就先去这个类吧,在call方法里面,我们找到了这句...
分类:
其他好文 时间:
2014-05-17 22:54:25
阅读次数:
397
开始是一个LinkLabel 控件,LinkLabel 绑定了Clicke事件
LinkLabel Delete = new LinkLabel(); Delete.Text = "删除";Delete.Tag="我是第"+i+"行";
...
分类:
其他好文 时间:
2014-05-17 19:55:44
阅读次数:
189
现在你已经了解了怎么使用ES作为一个分布式的document存储。你可一存储document,update document,检索document,delete
documnet,并且你也只到了怎么操作是安全的。即使你现在还不了解更多的关于ES是怎么search的,以前了解到的这些是非常非常有用的。...
分类:
其他好文 时间:
2014-05-17 19:50:02
阅读次数:
241
mget允许我们一次检索多个document,而bulk
API则允许我们在一个请求中做create,index,update
或者delete。如果你要index一个数据流如日志数据,bulk是很实用的,bulk可以能排队数百或数千的批次处理。bulk的请求体有点不同寻常,如下:{
action:...
分类:
其他好文 时间:
2014-05-17 19:24:37
阅读次数:
313