單項(xiàng)選擇題Kotlin中如果子類沒有主構(gòu)造函數(shù),則必須在每一個(gè)二級構(gòu)造函數(shù)中用()關(guān)鍵字初始化基類,或者在代理另一個(gè)構(gòu)造函數(shù)

A.init
B.base
C.super
D.main


您可能感興趣的試卷

你可能感興趣的試題

1.單項(xiàng)選擇題Kotlin中如果子類有主構(gòu)造函數(shù),則基類必須在()中立即初始化

A.次構(gòu)造函數(shù)
B.主構(gòu)造函數(shù)
C.init塊中
D.static代碼塊

2.單項(xiàng)選擇題Kotlin中Any默認(rèn)提供了三個(gè)函數(shù)不包括()

A.equals()
B.compare()
C.hashCode()
D.toString()

3.單項(xiàng)選擇題Kotlin中下列類實(shí)例化方法正確的是()

A.Runoobsite=newRunoob()
B.valsite=newRunoob()
C.Runoobsite=Runoob()
D.V.alsite=Runoob()

4.單項(xiàng)選擇題Kotlin中如何定義一個(gè)空類()

A.Emptyclass
B.Null
C.classEmpty
D.以上都不對