摘要:
简介 Linux的shell有很多,常见的有:(1)Bourne Shell(/usr/bin/sh或/bin/sh)(2)Bourne Again Shell(/bin/sh)(3)C Shell(/usr/bin/csh)(4)K Shell(/usr/bin/ksh)(5)Shell for 阅读全文
摘要:
Comparator位于包java.util,而Comparable位于包java.lang。interface Comparable<T> { int compareTo(T o);} interface Comparator<T> { int compare(T o1, T o2);}Integ 阅读全文