- 博客(7)
- 收藏
- 关注
原创 为什么多次调用同一个对象的HashCode方法返回不一样
public class HashCodeDemo {public static void main(String[] args) {Person p = new Person();System.out.println(p.hashCode());Person p2 = p;System.out.println(p2.hashCode());String str
2017-06-06 23:25:00 1864
翻译 comparator接口与Comparable接口的区别
comparator接口与Comparable接口的区别1. Comparator 和 Comparable 相同的地方他们都是java的一个接口, 并且是用来对自定义的class比较大小的,什么是自定义class: 如 public class Person{ String name; int age }.当我们有这么一个personList,里面包含了person1, pe
2017-06-06 21:33:46 148
转载 Thread.Sleep 函数
我们可能经常会用到 Thread.Sleep 函数来使线程挂起一段时间。那么你有没有正确的理解这个函数的用法呢?思考下面这两个问题:假设现在是 2008-4-7 12:00:00.000,如果我调用一下 Thread.Sleep(1000) ,在 2008-4-7 12:00:01.000 的时候,这个线程会 不会被唤醒?某人的代码中用了一句看似莫明其妙的话:Thread.Sleep(
2017-04-10 08:36:33 1681
转载 what is difference between equals() and contentEquals() of String class?
what is difference between equals() and contentEquals() of String class? posted 4 years agowhat is the difference between below 2 methods of String class:
2017-04-09 23:11:32 426
转载 Java7中的switch支持String的实现细节
Java7中的switch支持String的实现细节作者: zsxwing 更新: 2013-03-04 21:08:02 发布: 2012-04-26 13:58:19 在Java7之前,switch只能支持 byte、short、char、int或者其对应的封装类以及Enum类型。在Java7中,呼吁很久的String支持也终于被加上了。
2017-04-08 09:52:23 215
转载 为何非静态内部类不能有静态成员
首先要弄清楚非静态内部类的概念。 非静态内部类如下:public class Outer { class Inner { //public static int si = 1;错误,不允许存在静态的内部成员 public static final int i = 1; } public static void main(String[] ar
2017-04-07 23:09:17 721
转载 加载一个类时,其内部类是否同时被加载?引申出单例模式的另一种实现方式
加载一个类时,其内部类是否同时被加载?下面我们做一个实验来看一下。 Java代码 1. public class Outer { 2. static { 3. System.out.println("load outer class..."); 4. } 5. 6. /
2017-04-07 12:11:12 394
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人