码迷,mamicode.com
首页 > 其他好文 > 详细

进阶Kotlin-常见关键字

时间:2017-11-02 11:12:07      阅读:164      评论:0      收藏:0      [点我收藏+]

标签:执行   函数   bre   prot   bsp   idt   tail   init   ted   

常见Kotlin 的关键字   一些常见的语法,我没有写注释。

前面基础的kotlin语法已经弄完了。

现在是高阶kotlin的语法啊。

包括,面向对象,lambad等。

其中面向对象的三大特点:封装 继承 多态

lambad基础使用

集合和字典等

关键字

解释

关键字

解释

if

 

for

 

while

 

when

 

else

 

break

 

continue

返回最近层循环体

do

 

class

fun

函数

package

interface

接口

public

公开

private

私有

protected

当前类,子类可见

sealed

密封类

印章类

tailrec

尾递归

abstract

抽象类

enum

穷举

typealias

类型别名

final

禁止覆盖/

重写?

inner

嵌套类内引用外部类实例

open

允许重写或者类的子类化

override

重写

init

初始化块

const

常量

return

返回

super

运行超类的方法

object

同时声明类及实例【单例模式】

this

当前接收者

whrow

异常

null

by

委托/代理

try

处理异常

catch

处理指定异常块

var

变量

val

只读变量

in

 

get

 

set

 

out

协变

vararg

允许使用可变参数

constructo

构造函数/次构造函数

true

 

false

 

where

泛型约束

dynamic

动态类

file

注解

finally

try退出时总会执行的块

 

 

 

 

 

 

 

 

 

 

 

进阶Kotlin-常见关键字

标签:执行   函数   bre   prot   bsp   idt   tail   init   ted   

原文地址:http://www.cnblogs.com/T-ARF/p/7770861.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!