單項選擇題valstr="kotlin"with(str){println("first=${first()}")

A.K
B.T
C.L
D.I


您可能感興趣的試卷

你可能感興趣的試題

2.單項選擇題修飾泛型函數(shù)正確的是()

A.funsingletonList(item:T):List{}
B.funsingletonList(item:T):List{/*……*/}
C.funsingletonList(item:):List{/*……*/}

3.單項選擇題成員函數(shù)以點表示法調(diào)用正確的是?()

A.類名.方法名
B.類名
C.方法名
D.方法名.類名

4.單項選擇題下面那個是成員函數(shù)聲明正確的一個?()

A.ClassSample(){funfoo(){print("Foo")}}
B.ClassSample(){}
C.Funfoo(){print("Foo")}classSample(){}
D.Fun{print("Foo")}

5.單項選擇題在調(diào)用函數(shù)時使用命名的函數(shù)參數(shù)中正確的是()

A.fun reformat(str: String, normalizeCase: Boolean = true, upperCaseFirstLetter: Boolean = true, divideByCamelHumps: Boolean = false, wordSeparator: Char = ' ') {} 
B.fun reformat(str: String, normalizeCase: Int = true, upperCaseFirstLetter: Boolean = true, divideByCamelHumps: Boolean = false, wordSeparator: Char = ' ') {/*……*/}    
C.fun reformat(str: String, normalizeCase: Boolean = true, upperCaseFirstLetter: String = true, divideByCamelHumps: Boolean = false, wordSeparator: Char = ' ') {/*……*/}    
D.fun reformat(str: String, normalizeCase: Boolean = true, upperCaseFirstLetter: Boolean = true, divideByCamelHumps: String = false, wordSeparator: Char = ' ') {/*……*/}