美文网首页
kotlin-let、with、run、apply,also

kotlin-let、with、run、apply,also

作者: JuliusL | 来源:发表于2020-11-29 00:15 被阅读0次
    目录

    1,let
    2,with
    3,run
    4,apply
    5,also


    image.png

    1,let

    • 场景一: 最常用的场景就是使用let函数处理需要针对一个可null的对象统一做判空处理。
    • 场景二: 然后就是需要去明确一个变量所处特定的作用域范围内可以使用

    一般结构

    object.let{
       it.todo()//在函数体内使用it替代object对象去访问其公有的属性和方法
       ...
    }
    
    //另一种用途 判断object为null的操作
    object?.let{//表示object不为null的条件下,才会去执行let函数体
       it.todo()
    }
    

    before

    mVideoPlayer?.setVideoView(activity.course_video_view)
    mVideoPlayer?.setControllerView(activity.course_video_controller_view)
    mVideoPlayer?.setCurtainView(activity.course_video_curtain_view)
    

    after

    mVideoPlayer?.let {
           it.setVideoView(activity.course_video_view)
           it.setControllerView(activity.course_video_controller_view)
           it.setCurtainView(activity.course_video_curtain_view)
    }
    

    2,with

    • 适用于调用同一个类的多个方法时,可以省去类名重复,直接调用类的方法即可,经常用于Android中RecyclerView中onBinderViewHolder中,数据model的属性映射到UI上
    一般结构
     with(object){
       //todo
     }
    

    after

    val result = with(user) {
            println("my name is $name, I am $age years old, my phone number is $phoneNum")
            1000
        }
    

    3,run

    • 适用于let,with函数任何场景。因为run函数是let,with两个函数结合体,准确来说它弥补了let函数在函数体内必须使用it参数替代对象,在run函数中可以像with函数一样可以省略,直接访问实例的公有属性和方法,另一方面它弥补了with函数传入对象判空问题,在run函数中可以像let函数一样做判空处理
    一般结构
    object.run{
    //todo
    }
    

    before

    override fun onBindViewHolder(holder: ViewHolder, position: Int){
       val item = getItem(position)?: return
       with(item){
           holder.tvNewsTitle.text = StringUtils.trimToEmpty(titleEn)
           holder.tvNewsSummary.text = StringUtils.trimToEmpty(summary)
           holder.tvExtraInf = "难度:$gradeInfo | 单词数:$length | 读后感: $numReviews"
           ...   
       }
    }
    

    after

    override fun onBindViewHolder(holder: ViewHolder, position: Int){
      getItem(position)?.run{
          holder.tvNewsTitle.text = StringUtils.trimToEmpty(titleEn)
           holder.tvNewsSummary.text = StringUtils.trimToEmpty(summary)
           holder.tvExtraInf = "难度:$gradeInfo | 单词数:$length | 读后感: $numReviews"
           ...   
       }
    }
    
    

    4,apply

    • 从结构上来看apply函数和run函数很像,唯一不同点就是它们各自返回的值不一样,run函数是以闭包形式返回最后一行代码的值,而apply函数的返回的是传入对象的本身。
    • 正是基于这一点差异它的适用场景稍微与run函数有点不一样。apply一般用于一个对象实例初始化的时候,需要对对象中的属性进行赋值。或者动态inflate出一个XML的View的时候需要给View绑定数据也会用到,这种情景非常常见。特别是在我们开发中会有一些数据model向View model转化实例化的过程中需要用到。
    一般结构
    object.apply{
    //todo
    }
    

    before

    mSheetDialogView = View.inflate(activity, R.layout.biz_exam_plan_layout_sheet_inner, null)
    mSheetDialogView.course_comment_tv_label.paint.isFakeBoldText = true
    mSheetDialogView.course_comment_tv_score.paint.isFakeBoldText = true
    mSheetDialogView.course_comment_tv_cancel.paint.isFakeBoldText = true
    mSheetDialogView.course_comment_tv_confirm.paint.isFakeBoldText = true
    mSheetDialogView.course_comment_seek_bar.max = 10
    mSheetDialogView.course_comment_seek_bar.progress = 0
    

    after

    mSheetDialogView = View.inflate(activity, R.layout.biz_exam_plan_layout_sheet_inner, null).apply{
       course_comment_tv_label.paint.isFakeBoldText = true
       course_comment_tv_score.paint.isFakeBoldText = true
       course_comment_tv_cancel.paint.isFakeBoldText = true
       course_comment_tv_confirm.paint.isFakeBoldText = true
       course_comment_seek_bar.max = 10
       course_comment_seek_bar.progress = 0
    }
    
    多级判空问题

    before

    if (mSectionMetaData == null || mSectionMetaData.questionnaire == null || mSectionMetaData.section == null) {
        return;
    }
    if (mSectionMetaData.questionnaire.userProject != null) {
        renderAnalysis();
        return;
    }
    if (mSectionMetaData.section != null && !mSectionMetaData.section.sectionArticles.isEmpty()) {
        fetchQuestionData();
        return;
    }
    

    after

    mSectionMetaData?.apply{
    //mSectionMetaData不为空的时候操作mSectionMetaData
    }?.questionnaire?.apply{
    //questionnaire不为空的时候操作questionnaire
    }?.section?.apply{
    //section不为空的时候操作section
    }?.sectionArticle?.apply{
    //sectionArticle不为空的时候操作sectionArticle
    }
    

    5,also

    • also函数的结构实际上和let很像唯一的区别就是返回值的不一样,let是以闭包的形式返回,返回函数体内最后一行的值,如果最后一行为空就返回一个Unit类型的默认值。而also函数返回的则是传入对象的本身
    • 适用于let函数的任何场景,also函数和let很像,只是唯一的不同点就是let函数最后的返回值是最后一行的返回值而also函数的返回值是返回当前的这个对象。一般可用于多个扩展函数链式调用
    object.also{
    //todo
    }
    

    相关文章

      网友评论

          本文标题:kotlin-let、with、run、apply,also

          本文链接:https://www.haomeiwen.com/subject/didhwktx.html