1. XenForo 1.5.14 中文版——支持中文搜索!现已发布!查看详情
  2. Xenforo 爱好者讨论群:215909318 XenForo专区

新闻 Kotlin M14 发布,基于 JVM 的编程语言 下载

本帖由 漂亮的石头2015-10-02 发布。版面名称:软件资讯

  1. 漂亮的石头

    漂亮的石头 版主 管理成员

    注册:
    2012-02-10
    帖子:
    487,295
    赞:
    47
    Kotlin M14 发布,此版本主要改进如下:


    • 支持文件类注解


    • 标准库新增 Java API


    • 操作符新增 operator modifier


    • 可以通过合成 field 变量访问 Backing fields
    语言改进


    • Backing fields


    • Operators


    • Compile-time constants


    • Annotate file classes


    • 其他语言改进

      • private on the top level is now private to file


      • internal is checked in the compiler (not only IDE)


      • private in interfaces is truly private now


      • equals in data classes compares arrays by calling their .equals() method (which works by identity)


      • lateinit val‘s are prohibited


      • many cases of inheritance and other degrees of freedom are prohibited for data classed (see this blog post)


      • protected and internal members are prohibited in interfaces


      • _, __, ___ are forbidden as in identifiers, i.e. we can use _foo, but not _ alone (reserved for future use)


      • identityEquals() function is deprecated in favor of ===
    标准库改进


    • ArraysKt — operations on arrays, extensions for arrays, array factory methods


    • CharsKt — extensions for Char and Char.Companion, most of them should be hidden


    • CollectionsKt — operations on iterables, collections and lists, list factory methods


    • ComparisonsKt — operations on comparators, comparator factory methods, and functions for performing comparisons
    IDE 改进


    As usual, the IDE helps you migrate seamlessly from M13 via Code cleanup. Also there are several new handy features in M14:


    • As mentioned above, there in some cases we need private backing properties. You can easily introduce them via intention action:
      [​IMG]


    • Also you can move property initialization from constructor body or initializer block to property declaration:
      [​IMG]


    • One of the long-expected features is completion for overriding functions and properties:
      [​IMG]


    • Since M13 the IDE optimizes imports on the fly. Add unambiguous imports on the fly feature is also supported now. Give it a try:
      [​IMG]
    安装


    IntelliJ IDEA 15 Public Preview 包含 Kotlin M14 绑定。

    更多内容请看发行说明

    Kotlin 是一个基于 JVM 的新的编程语言,由 JetBrains 开发。

    其主要设计目标:


    • 创建一种兼容Java的语言


    • 让它比Java更安全,能够静态检测常见的陷阱。如:引用空指针


    • 让 它比Java更简洁,通过支持variable type inference,higher-order functions (closures),extension functions,mixins and first-class delegation等实现。


    • 让它比最成熟的竞争对手Scala语言更加简单。
    Kotlin M14 发布,基于 JVM 的编程语言下载地址
     
正在加载...