A. 主構(gòu)造器在每個類都可以定義多個
B. 主構(gòu)造器的參數(shù)可以直接放在類名后
C. 主構(gòu)造器的會執(zhí)行類定義中的所有語句
D. 主構(gòu)造器中可以使用默認參數(shù)
您可能感興趣的試卷
你可能感興趣的試題
A.class Counter{def counter = “counter”}
B.class Counter{val counter = “counter”}
C.class Counter{var counter:String}
D.class Counter{def counter () {}}
A.("New", "York")
B.("NY", "ew ork")
C.("er ork", "NY")
D.("New York", "NY")
A.val b = 2 * a // b 等于 Array(2,4,6)
B.val b = a.map(_*2) // b 等于 Array(2,4,6)
C.val b = for(elem <- a) yield 2 * elem // b 等于 Array(2,4,6)
D.val b = for(elem <- a if elem % 2 == 0) yield 2 * elem // b 等于 Array(4)
A.15
B.120
C.200
D.300
A.def countdown(n:Int){ 0 to n foreach print }
B.def countdown(n:Int){ (0 until n).reverse foreach print }
C.def countdown(n:Int){ (0 to n).reverse foreach print }
D.def countdown(n:Int){ (0 to n-1).reverse foreach print }
最新試題
在DOS中一個java類的編譯命令是()。
以下可能需要用到zookeeper的有()。
MapReduce編程模型中以下組件哪個是最后執(zhí)行的?()
下列哪個不屬于flume的channel類型()。
關(guān)于Java中傳遞參數(shù)的說法,哪個是錯誤的?()
一個以java為后綴的源文件()。
在使用MapReduce程序WordCount進行詞頻統(tǒng)計時,對于文本*行“hello hadoop hello world”,經(jīng)過WordCount程序的Map函數(shù)處理后直接輸出的中間結(jié)果,應(yīng)該是下面哪種形式:()。
寬依賴的算子有()。
配置機架感知的下面哪項正確()。
關(guān)于Java的抽象類、接口,以下描述錯誤的是()。