private var personDaoImpl: SysPersonDaoImpl? = null

一般是申明的时候指定了可以为空 但实际为null时,kotlin无法智能转换 ,修改成:

private lateinit var personDaoImpl: SysPersonDaoImpl


相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2021-06-17
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2021-11-07
  • 2021-04-21
  • 2022-12-23
  • 2022-01-10
  • 2021-09-27
  • 2021-10-24
相关资源
相似解决方案