Kotlin的構(gòu)造函數(shù)分為主構(gòu)造器(primary constructor)和次級構(gòu)造器(secondary constructor)。
一、 Primary Constructor
- 寫法一:
class 類名 constructor(形參1, 形參2, 形參3){}
class Person constructor(username: String, age: Int){
private val username: String
private var age: Int
init{
this.username = username
this.age = age
}
}
這里有兩個(gè)關(guān)鍵點(diǎn):
1下梢、關(guān)鍵字constructor:在Java中梁只,構(gòu)造方法名須和類名相同;而在Kotlin中宙刘,是通過constructor關(guān)鍵字來標(biāo)明的锄贷,且對于Primary Constructor而言译蒂,它的位置是在類的首部(class header)而不是在類體中(class body)曼月。
2、關(guān)鍵字init:init{}它被稱作是初始化代碼塊(Initializer Block)柔昼,它的作用是為了Primary Constructor服務(wù)的哑芹,由于Primary Constructor是放置在類的首部,是不能包含任何初始化執(zhí)行語句的岳锁,這是語法規(guī)定的,那么這個(gè)時(shí)候就有了init的用武之地蹦魔,我們可以把初始化執(zhí)行語句放置在此處激率,為屬性進(jìn)行賦值。
- 寫法二(演變一):
a. 當(dāng)constructor關(guān)鍵字沒有注解和可見性修飾符作用于它時(shí)勿决,constructor關(guān)鍵字可以省略(當(dāng)然乒躺,如果有這些修飾時(shí),是不能夠省略的低缩,并且constructor關(guān)鍵字位于修飾符后面)嘉冒。那么上面的代碼就變成:
class Person (username: String, age: Int){
private val username: String
private var age: Int
init{
this.username = username
this.age = age
}
}
b. 初始化執(zhí)行語句不是必須放置在init塊中,我們可以在定義屬性時(shí)直接將主構(gòu)造器中的形參賦值給它咆繁。
class Person(username: String, age: Int){
private val username: String = username
private var age: Int = age
}
其實(shí)寫法二實(shí)際上就是對寫法一前面提到的兩個(gè)關(guān)鍵字的簡化讳推。
- 寫法三(演變二):
這種在構(gòu)造器中聲明形參,然后在屬性定義進(jìn)行賦值玩般,這個(gè)過程實(shí)際上很繁瑣银觅,我們是可以直接在Primary Constructor中定義類屬性的。
class Person(private val username: String, private var age: Int){}
如果類不包含其他操作函數(shù)坏为,那么連花括號也可以省略
class Person(private val username: String, private var age: Int)
- 當(dāng)我們定義一個(gè)類時(shí)究驴,我們?nèi)绻麤]有為其顯式提供Primary Constructor,Kotlin編譯器會默認(rèn)為其生成一個(gè)無參主構(gòu)造匀伏,這點(diǎn)和Java是一樣的洒忧。比如有這樣的一個(gè)類:
二、 Secondary Constructor
1.示例:
class User{
private val username: String
private var age: Int
constructor(username: String, age: Int){
this.username = username
this.age = age
}
}
和Primary Constructor相比够颠,很明顯的一點(diǎn)熙侍,Secondary Constructor是定義在類體中。第二履磨,Secondary Constructor可以有多個(gè)核行,而Primary Constructor只會有一個(gè)。
- 要想實(shí)現(xiàn)屬性的初始化蹬耘,實(shí)際上主構(gòu)造器已經(jīng)能夠應(yīng)付多數(shù)情況了芝雪,為什么還需要次級構(gòu)造器?主要原因是因?yàn)槲覀冇袝r(shí)候是需要去繼承框架中的類综苔。如在Android中你自定義一個(gè)ViewPager:
/**
* 不可以滑動惩系,但是可以setCurrentItem的ViewPager位岔。
*/
class NoScrollViewPager : ViewPager {
private var canScroll: Boolean = false
fun setCanScroll(scroll: Boolean) {
this.canScroll = scroll
}
constructor(context: Context) : super(context)
constructor(context: Context, attrs: AttributeSet) : super(context, attrs)
override fun onTouchEvent(arg0: MotionEvent): Boolean {
return if (canScroll) {
super.onTouchEvent(arg0)
} else {
false
}
}
override fun onInterceptTouchEvent(arg0: MotionEvent): Boolean {
return false
}
//去除頁面切換時(shí)的滑動翻頁效果
override fun setCurrentItem(item: Int, smoothScroll: Boolean) {
super.setCurrentItem(item, smoothScroll)
}
override fun setCurrentItem(item: Int) {
super.setCurrentItem(item, false)
}
}
在這種情況下,你如果需要重寫ViewPager 的多個(gè)構(gòu)造器堡牡,那么抒抬,就需要用到Secondary Constructor。同樣晤柄,這里也有幾點(diǎn)需要注意:
1擦剑、可以看到,我們可以使用this關(guān)鍵字來調(diào)用自己的其他構(gòu)造器芥颈,并且需要注意它的語法形式惠勒,次級構(gòu)造器: this(參數(shù)列表)
2、可以使用super關(guān)鍵字來調(diào)用父類構(gòu)造器爬坑,當(dāng)然這塊內(nèi)容我們放到繼承那塊再來介紹纠屋。這里是為了說明Secondary Constructor的作用,實(shí)際上在開發(fā)中我們可以使用默認(rèn)參數(shù)來使代碼簡化盾计!
- 我們再來看這樣一種情況售担,我們同時(shí)定義了主構(gòu)造器和次級構(gòu)造器:
class Student constructor(username: String, age: Int) {
private val username: String = username
private var age: Int = age
private var address: String
private var isMarried: Boolean
init {
this.address = "Beijing"
this.isMarried = false
}
constructor(username: String, age: Int, address: String) :this(username, age) {
this.address = address
}
constructor(username: String, age: Int, address: String, isMarried: Boolean) : this(username, age, address) {
this.isMarried = isMarried
}
}
這種情況四個(gè)參數(shù)的次級構(gòu)造調(diào)用三個(gè)參數(shù)的次級構(gòu)造,而三個(gè)參數(shù)的次級構(gòu)造又調(diào)用了主構(gòu)造署辉。換句話族铆,次級構(gòu)造會直接或者間接調(diào)用主構(gòu)造。這也就是這個(gè)例子需要說明的問題哭尝。