Kotlin M11 发布,基于 JVM 的编程语言
n7w77 10年前
Kotlin 是一个基于 JVM 的新的编程语言,由 JetBrains 开发。
其主要设计目标:
- 创建一种兼容Java的语言
- 让它比Java更安全,能够静态检测常见的陷阱。如:引用空指针
- 让它比Java更简洁,通过支持variable type inference,higher-order functions (closures),extension functions,mixins and first-class delegation等实现。
- 让它比最成熟的竞争对手Scala语言更加简单。
Kotlin M11 主要改进如下:
- 语 言改进:多个构造函数,Prefixes For Initializer Blocks,Companion Objects (Class-Objects Rethought),Function Expressions,Lambda Syntax Restricted (for future enrichment),Labeled Returns in Lambdas,Import Semantics Changed
- 反射:The New Reflection Jar,Class Literals,Compatibility with Java Reflection APIs
- Java 的 @Nullable 和 @NotNull in Java
- Android 扩展
- IntelliJ IDEA 支持
- Refactorings 和 Intentions
- Evaluate Expression
- KDoc 支持
- 标准库
- JavaScript 支持
- Gradle 改进
- Bug 修复和编译速度提升
来自:http://www.oschina.net/news/60700/kotlin-m11