Skip to content
This repository has been archived by the owner on Mar 11, 2023. It is now read-only.

[Kotlin In Action] Chapter One Notes

spencercjh edited this page Nov 23, 2019 · 4 revisions

正文

1.Kotlin简介

第一章就在安利Kotlin。我想在这里总结一下我被Kotlin深深吸引的原因——

  • 安全

var? and var 消除NPE; is and as 智能转换 ……

  • 简洁

data class; 没有分号 ……

  • 现代

函数式编程; 命名参数; 默认参数值; 安全 ……

总的来说,Kotlin集百家之长,让你在享受其他各种语言的feature同时写着Java这一生态、标准成熟的企业级开发语言。