kotlin 踩坑记 三

这次碰到的是这个异常,记录如下:

java.lang.RuntimeException: Unable to start activity ComponentInfo{com.xianglin.app/com.xianglin.app.biz.chat.groupsetting.scangroup.ScanGroupActivity}: kotlin.UninitializedPropertyAccessException: lateinit property view has not been initialized
    ║     at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2655)

 原因很简单,采用lateinit标记属性时未初始化。lateinit是防止出现空的。代码如下:

class ScanGroupPresenter(scanGroupFragment: ScanGroupFragment) : ScanGroupContract.Present {
//    private var view: ScanGroupContract.View ?= null  //允许为空
    private lateinit var view :ScanGroupContract.View   //非空如何初始化
    init {
//        if (view == null) return
        this.view = view
        view.setPresenter(this)
    }
在这个类的构造函数进行赋值,在其它地方调用  ScanGroupPresenter(scanGroupFragment) 所以就出错了。

修改后:

class ScanGroupPresenter(scanGroupFragment: ScanGroupFragment) : ScanGroupContract.Present {

//    private var view: ScanGroupContract.View ?= null  //允许为空
    private var view :ScanGroupContract.View = scanGroupFragment  //非空如何初始化

    init {
//        if (view == null) return

//        this.view = view
        view.setPresenter(this)
    }

//    constructor(scanGroupFragment: ScanGroupFragment):this(scanGroupFragment)



//    fun ScanGroupPresenter(view: ScanGroupContract.View?){
//        if (view == null) return
//        this.view = view
//        view.setPresenter(this)
//    }

    override fun getGroupInfo(groupId: String) {
        if (TextUtils.isEmpty(groupId)) return
        val list = ArrayList<Any>()
        list.add(groupId)
        RetrofitUtil.createService()
                .queryGroupByRUId(RpcHelper.getParamMap(ApiMethod.METHOD_QUERY_GROUP_BYRUID, list))
//                .compose<Response<GroupVo>>(TransformUtils.defaultSchedulers<Response<GroupVo>>(view))
                .compose(TransformUtils.defaultSchedulers(view))
                .subscribe(object : HttpResponseSubscriber<GroupVo>() {

                    override fun onSubscribe(@NonNull d: Disposable) {
                        super.onSubscribe(d)
                    }

                    override fun onSuccess(result: GroupVo?) {
                        if (result == null) return
                        view.showSuccess(result)

                    }

                    override fun _onError(e: HttpThrowable) {
                        view.showTips(e.message!!)
                    }
                })


    }

对于kotlin的构造函数一般有如下几种方式:

Kotlin的构造函数分为主构造器(primary constructor)和次级构造器(secondary constructor)。下面我们来看看他们的写法。

一、 Primary Constructor

1. 写法一:

class 类名 constructor(形参1, 形参2, 形参3){}
eg: 

  1. class Person constructor(username: String, age: Int){

  2. private val username: String

  3. private var age: Int

  4.  
  5. init{

  6. this.username = username

  7. this.age = age

  8. }

  9. }

这里需要注意几点:

  • 关键字constructor:在Java中,构造方法名须和类名相同;而在Kotlin中,是通过constructor关键字来标明的,且对于Primary Constructor而言,它的位置是在类的首部(class header)而不是在类体中(class body)。
  • 关键字init:init{}它被称作是初始化代码块(Initializer Block),它的作用是为了Primary Constructor服务的,由于Primary Constructor是放置在类的首部,是不能包含任何初始化执行语句的,这是语法规定的,那么这个时候就有了init的用武之地,我们可以把初始化执行语句放置在此处,为属性进行赋值。

2. 写法二(演变一):

a. 当constructor关键字没有注解和可见性修饰符作用于它时,constructor关键字可以省略(当然,如果有这些修饰时,是不能够省略的,并且constructor关键字位于修饰符后面)。那么上面的代码就变成:

  1. class Person (username: String, age: Int){

  2.     private val username: String

  3.     private var age: Int

  4.  
  5.     init{

  6. this.username = username

  7. this.age = age

  8.     }

  9. }

b. 初始化执行语句不是必须放置在init块中,我们可以在定义属性时直接将主构造器中的形参赋值给它。

  1. class Person(username: String, age: Int){

  2.     private val username: String = username

  3.     private var age: Int = age

  4. }

可以看出,我们的写法二实际上就是对我们在写法一前面提到的两个关键字的简化。

3. 写法三(演变二):
这种在构造器中声明形参,然后在属性定义进行赋值,这个过程实际上很繁琐,有没有更加简便的方法呢?当然有,我们可以直接在Primary Constructor中定义类的属性。

class Person(private val username: String, private var age: Int){}

如果类不包含其他操作函数,那么连花括号也可以省略

class Person(private val username: String, private var age: Int)

看,是不是一次比一次简洁?实际上这就是Kotlin的一大特点

4.    当我们定义一个类时,我们如果没有为其显式提供Primary Constructor,Kotlin编译器会默认为其生成一个无参主构造,这点和Java是一样的。比如有这样的一个类:

  1. class Person {

  2. private val username = "David"

  3. private var age = 23

  4.  
  5. fun printInfo() {

  6. println("username = $username, age = $age")

  7. }

  8. }

  9. fun main(args: Array<String>) {

  10. val person = Person()

  11. person.printInfo()

  12. }

  13.  

我们使用javap命令来反编译这个Person类。可以看到这个无参主构造:

二、 Secondary Constructor
1.示例:

  1. class User{

  2. private val username: String

  3. private var age: Int

  4.  
  5. constructor(username: String, age: Int){

  6.     this.username = username

  7.     this.age = age

  8. }

  9. }

和Primary Constructor相比,很明显的一点,Secondary Constructor是定义在类体中。第二,Secondary Constructor可以有多个,而Primary Constructor只会有一个。

2. 要想实现属性的初始化,实际上主构造器已经能够应付多数情况了,为什么还需要次级构造器?主要原因是因为我们有时候是需要去继承框架中的类。如在Android中你自定义一个Button:

 
  1. class MyButton : AppCompatButton {

  2.  
  3. constructor(context: Context) : this(context, null)

  4.     constructor(context: Context, attrs: AttributeSet?) : this(context, attrs, R.attr.buttonStyle)

  5.     constructor(context: Context, attrs: AttributeSet?, defStyleAttr: Int) : super(context, attrs, defStyleAttr)

  6. }

在这种情况下,你如果需要重写AppCompatButton的多个构造器,那么,就需要用到Secondary Constructor。同样,这里也有几点需要注意:

  • 可以看到,我们可以使用this关键字来调用自己的其他构造器,并且需要注意它的语法形式,次级构造器: this(参数列表)
  • 可以使用super关键字来调用父类构造器,当然这块内容我们放到继承那块再来介绍。

3. 我们再来看这样一种情况,我们同时定义了主构造器和次级构造器:

  1. class Student constructor(username: String, age: Int) {

  2.  
  3.  
  4. private val username: String = username

  5. private var age: Int = age

  6. private var address: String

  7. private var isMarried: Boolean

  8.  
  9.  
  10. init {

  11. this.address = "Beijing"

  12. this.isMarried = false

  13. }

  14.  
  15.  
  16. constructor(username: String, age: Int, address: String) :this(username, age) {

  17.  
  18. this.address = address

  19. }

  20.  
  21.  
  22. constructor(username: String, age: Int, address: String, isMarried: Boolean) : this(username, age, address) {

  23.  
  24. this.isMarried = isMarried

  25. }

  26.  
  27.  
  28. }

可以看到,四个参数的次级构造调用三个参数的次级构造,而三个参数的次级构造又调用了主构造。换句话,次级构造会直接或者间接调用主构造。这也就是这个例子需要说明的问题。如果你还不信,我们可以把“: this(username, age)”删除掉,看编译器会给你什么提示:

“Primary constructor call expected”。提示很明显,和我们在之前提到的内容是一样的。

参考:https://blog.csdn.net/qq_26585943/article/details/80275426

猜你喜欢

转载自blog.csdn.net/kdsde/article/details/82707264