摘要:
In computer science, merge sort (also commonly spelled mergesort) is an efficient, general-purpose, comparison-based sorting algorithm. Most implement 阅读全文
摘要:
API文档中的介绍: A pool of strings, initially empty, is maintained privately by the class String. When the intern method is invoked, if the pool already con 阅读全文
摘要:
一.什么时候用Class.forName()?A a = (A)Class.forName(“pacage.A”).newInstance();和 A a = new A(); 是一样的效果。 动态加载和创建Class 对象,根据用户输入的字符串来创建对象时需要用到:String str = “用户 阅读全文
摘要:
You are given an array x of n positive numbers. You start at point (0,0) and moves x[0] metres to the north, then x[1] metres to the west, x[2] metres 阅读全文
摘要:
Switch 的表达式可以为byte,short,int,char,JDK7之后的版本可以为string。 带标签的语句:可以直接跳出多层循环。 如: loop1 : for( int i=0;i<100;i++){ loop2 : for (int j=0;j<i;j++){ if (条件){ b 阅读全文
摘要:
+=,-=,*=,/=隐含了强制类型转换。 逻辑运算中,&和&&的区别为: &:无论左边为真假,右边都参与运算 &&:如果左边为假,则右边不参与运算,如果左边为真,右边参与运算。 异或操作可以实现两个整数的交换(不需要额外空间开销): a, b; a = a ^ b; b = a ^ b; a = 阅读全文