==比较的是两个变量的值是否相等,对于引用型变量表示的是两个变量在堆中的存储地址是否相同,即栈中的内容是否相同equals表示的是两个变量是否是对同一个对象的引用,即堆中的内容是否相同==比较的是2个对象的地址,而equals比较的是2个对象的内容。基本数据类型都放在栈里面,所以基本数据类型可以用=...
分类:
其他好文 时间:
2015-01-02 17:30:15
阅读次数:
121
Given a binary tree and a sum, determine if the tree has a root-to-leaf path such that adding up all the values along the path equals the given sum.Fo...
分类:
其他好文 时间:
2015-01-02 15:50:42
阅读次数:
124
【题目】
Given a binary tree and a sum, find all root-to-leaf paths where each path's sum equals the given sum.
For example:
Given the below binary tree and sum
= 22,
5
...
分类:
其他好文 时间:
2015-01-02 12:20:43
阅读次数:
104
【题目】
Given a binary tree and a sum, determine if the tree has a root-to-leaf path such that adding up all the values along the path equals the given sum.
For example:
Given the below binary tre...
分类:
其他好文 时间:
2015-01-01 23:49:22
阅读次数:
189
简述:==: 用于基本类型和引用类型:当用于基本类型时候,是比较值是否相同;当用于引用类型的时候,是比较对象(内存地址)是否相同;equals: java.lang包中的Object类有public boolean equals(Object obj) { return (this == obj) ...
分类:
编程语言 时间:
2014-12-31 19:43:49
阅读次数:
229
有时候,很多方法都不行,比如==.equals都不行 ,那怎么办呢?用localeCompare方法可以。使用方法:string_a.localeCompare(string_b) 方法去做;它会返回3个值0:字符串相等-1:字符串string_astring_b大家以后就可以使用正确的方法比较字符...
分类:
编程语言 时间:
2014-12-31 18:19:49
阅读次数:
153
2014年终总结前言 早上在完善我自己的框架代码的时候,突然不知道怎么进行下去了。看看源码,看看博客,看看别人的总结,想想今年我都干了什么。依稀记得2013年底,在送女朋友回家的火车上,我对她说出了我2014年的目标,现在2014年已经快要结束了,本着later equals never原则酝酿了....
分类:
其他好文 时间:
2014-12-31 12:53:00
阅读次数:
122
Given a binary tree and a sum, find all root-to-leaf paths where each path's sum equals the given sum.
For example:
Given the below binary tree and sum
= 22,
5
/ ...
分类:
其他好文 时间:
2014-12-30 20:43:09
阅读次数:
212
Given a binary tree and a sum, determine if the tree has a root-to-leaf path such that adding up all the values along the path equals the given sum.
For example:
Given the below binary tree and sum
...
分类:
其他好文 时间:
2014-12-30 19:10:58
阅读次数:
135
分类:2008-06-04 12:47467人阅读评论(0)收藏举报linuxjava测试昨天,有同事A对同事B写的程序进行测试时,出现错误,看控制台信息,发现抛出了空指针异常。调查结果显示:当flag在配置文件中没有对应属性项时,这种隐患写法flag.equals("true")会抛出空指针错误。...
分类:
其他好文 时间:
2014-12-30 16:49:51
阅读次数:
302