摘要:
SqlPlus有时会出现非预期的折行,比如这样: SQL> select id,level,lpad(' ',(level-1)*3)||name as name 2 from emp3 3 start with mngid is NULL 4 connect by mngid=prior id; 阅读全文
摘要:
Java8里提供了一种三个点的语法,意思是无论传入的同类参数无论是一个还是多个,都让编译器给编到数组里传到函数里,这样做相对于数组参数或是链表参数有省却打包的优势,实际上其内部实现是让编译器干了这活。 简单例程: public class Test9 { private static void te 阅读全文