A. 主構(gòu)造器在每個(gè)類都可以定義多個(gè)
B. 主構(gòu)造器的參數(shù)可以直接放在類名后
C. 主構(gòu)造器的會(huì)執(zhí)行類定義中的所有語句
D. 主構(gòu)造器中可以使用默認(rèn)參數(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 }
最新試題
MapReduce編程模型中以下組件哪個(gè)是最后執(zhí)行的?()
關(guān)于HDFS中WEBUI的端口是什么?()
關(guān)于YARN中WEBUI的端口是什么?()
配置機(jī)架感知的下面哪項(xiàng)正確()。
分析下列方法,在調(diào)用div(1,0)和div(1,1)后分別反回什么?()
下列哪種類型的文件不是HDFS集群的元數(shù)據(jù)存儲(chǔ)格式?()
spark中的寬窄依賴描述正確的()。
在使用MapReduce程序WordCount進(jìn)行詞頻統(tǒng)計(jì)時(shí),對(duì)于文本*行“hello hadoop hello world”,經(jīng)過WordCount程序的Map函數(shù)處理后直接輸出的中間結(jié)果,應(yīng)該是下面哪種形式:()。
關(guān)于Java的抽象類、接口,以下描述錯(cuò)誤的是()。
scala的函數(shù)參數(shù)的求值策略有哪些。()