单项选择题
A.固定长度的字节数 B.1 C.-1 D.运行时异常被抛出
Map系列对象中,哪个对象的内部实现是双向链表?()A.HashMapB.HashTableC.LinkedH...
单项选择题Map系列对象中,哪个对象的内部实现是双向链表?()
A.HashMap B.HashTable C.LinkedHashMap D.TreeMap
class Birds { public static void main(String [] args) ...
class Birds { public static void main(String [] args) { try { throw new Exception(); } catch (Exception e) { try { throw new Exception(); } catch (Exception e2) { System.out.print("inner "); } System.out.print("middle "); } System.out.print("outer "); } } 结果为:()
A.inner B.inner outer C.middle outer D.inner middle outer
Java源文件的后缀名是?()A..classB..cC..javaD..txt
单项选择题Java源文件的后缀名是?()
A..class B..c C..java D..txt