7
5

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Kotlinまとめ - Kotlinとは

Last updated at Posted at 2018-07-14

Kotlinとは

  • JetBrainsが開発したJVM言語
  • 2016年2月にv1.0がリリース
  • 2017年のGoogle I/OでAndroidでの公式サポートが発表

特徴

簡潔

  • セミコロン不要
  • 型推論
  • データクラス
  • 拡張関数
  • などなど

安全

  • null安全
    • 変数やメソッドの戻り値などにnilが入る可能性があるかを明示しなければならない

JVM言語

  • Javaと100%互換性がある
  • Java→Kotlinの呼び出し、Kotlin→Javaの呼び出しも可能

静的型付け

  • Javaと同様コンパイルするので
  • 型推論のおかげで型の冗長な記述は不要

基本的な文法 - 型 →

7
5
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
7
5

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?