1、字符串不变性下面这张图展示了这段代码做了什么12String s = "abcd";s = s.concat("ef");2、equals()方法、hashCode()方法的区别HashCode被设计用来提高性能。equals()方法与hashCode()方法的区别在于:如果两个对象相等(equ...
分类:
编程语言 时间:
2014-06-16 00:02:04
阅读次数:
367
最近在看 高级点的程序员必看的 CLR via C# 书中说解释了Object.Equals() 方法的实现, 其中具体的实现用的是== 运算符!以前就对 == 运算符 的具体实现 产生过疑惑 . 它到底对比的什么?今天刚好手头的东西弄完了,而且还得强制加班中 ! 所以就那今天的加班时间 来认真 ....
分类:
其他好文 时间:
2014-06-15 23:32:50
阅读次数:
269
1、左关联查询var lst = from m in db.信息 join d in db.明细信息 on m.单号 equals d.单号 into mi from dt in mi.DefaultIfEmpty() //dt标示右表 where m.单号 == "2014" && dt.编码.S...
分类:
其他好文 时间:
2014-06-15 21:09:49
阅读次数:
189
Android的文件读写与JavaSE的文件读写相同,都是使用IO流。而且Android使用的正是JavaSE的IO流,下面我们通过一个练习来学习Android的文件读写。1.创建一个Android工程[html]view plaincopyProjectname:FileBuildTarget:A...
分类:
移动开发 时间:
2014-06-15 20:25:12
阅读次数:
270
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-06-15 19:55:39
阅读次数:
191
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-06-15 19:26:23
阅读次数:
207
Windows环境下可以使用Eclipse IDE for C/C++ Developers来搭建ARM开发环境
安装步骤如下:
1. 安装Java SE
网址:http://www.oracle.com/technetwork/java/javase/downloads/jre-7u3-download-1501631.html
下载这个文件:jre-7u3-windows-i586...
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 bin...
分类:
其他好文 时间:
2014-06-15 09:34:35
阅读次数:
226
一、Android搭建开发环境(一)、工具准备1.下载JDKJDK即Java Development Kit(Java开发工具包),包括JAVA运行环境,基础类库和JAVA工具,是JAVA运行的基础。网址:http://www.oracle.com/technetwork/java/javase/d...
分类:
移动开发 时间:
2014-06-15 07:54:05
阅读次数:
306
一、equals方法的作用 1、默认情况(没有覆盖equals方法)下equals方法都是调用Object类的equals方法,而Object的equals方法主要用于判断对象的内存地址引用是不是同一个地址(是不是同一个对象)。2 、要是类中覆盖了equals方法,那么就要根据具体的代码来确定equ...
分类:
编程语言 时间:
2014-06-14 15:49:58
阅读次数:
262