isset()测试$a = '';isset($a); // true$a = FALSE;var_dump(isset($a)); // true$a = NULL;var_dump(isset($a)); //false$a = TRUE;var_dump(isset($a)); //truee...
分类:
其他好文 时间:
2014-07-07 18:44:09
阅读次数:
245
Given a stringsconsists of upper/lower-case alphabets and empty space characters' ', return the length of last word in the string.If the last word doe...
分类:
其他好文 时间:
2014-07-07 15:30:23
阅读次数:
169
在对DB2数据库进行批量增删的时候, 如果数据量比较大会导致SQL0964N错误, DB2 Knowledge center(http://pic.dhe.ibm.com/infocenter/db2luw/v10r5/topic/com.ibm.db2.luw.messages.sql.doc/d...
分类:
数据库 时间:
2014-07-07 13:54:44
阅读次数:
255
perl treat 0 false, non 0 ture.print "false\n" if 0;print "false\n" if 0;------------------------tureperl treat string empty is false.my $temp = "";pr...
分类:
其他好文 时间:
2014-07-02 00:41:06
阅读次数:
195
Metrics-Java版的指标度量工具之一 Metrics-Java版的指标度量工具之二 JAVA Metrics 度量工具使用介绍1 JAVA Metrics度量工具 - Metrics Core 翻译 http://blog.synyx.de/2013/09/yammer-metrics-ma...
分类:
其他好文 时间:
2014-07-01 21:16:39
阅读次数:
344
## 前言第一天传送门: [2014 Hangjs 见闻流水账第一天 ](http://cnodejs.org/topic/53aa6d6dc3ee0b58206c7b3f)写作风格跟第一天还是一样的.## Slide每个slide我都会根据自己的理解重新命名一次,用于表达自己的第一看法,主观意见,...
分类:
Web程序 时间:
2014-07-01 00:16:24
阅读次数:
348
如何禁止C++ 类支持拷贝
C++ 编译器默默地为你做了不少工作
当你写下
class Empty {};
//其实等价于
class Empty {
public:
Empty() { ... } //default constructor
Empty(const Empty &rhs) { ... } //copy constructor
~Empty() { ......
分类:
编程语言 时间:
2014-06-30 18:47:21
阅读次数:
225
自动控制原理学习总结
明天就考自控了,现在也还没怎么做题,待会帮empty castle . L 把数据都备份好了认真看看题吧。。。还好是明天下午考试,不然估计会很坑爹。搞定自控!
自控的学习。。。基本上都是自学,老师上课基本上是白搭,一开始两周还坐前面听课。其实看不见,高度近视。都是“听”的。。。跟同学开玩笑说。。上自控就跟听力课似得。。中文听力课。...
分类:
其他好文 时间:
2014-06-30 07:48:34
阅读次数:
221
本篇blog教你如果使用kafka工具进行迁移和扩容相关topic。...
分类:
其他好文 时间:
2014-06-30 00:37:22
阅读次数:
337
题目
Given a string s1, we may represent it as a binary tree by partitioning it to two non-empty substrings recursively.
Below is one possible representation of s1 = "great":
great
/...
分类:
其他好文 时间:
2014-06-29 23:16:19
阅读次数:
312