kotlin學習筆記1-基礎
阿新 • • 發佈:2019-02-02
ash port oid 工程 工具 des lease visible flow
kotlin學習筆記1-基礎
kotlinAndroid- 優勢
- 基礎工具下載
- 命令行工具
- eclipse
- idea
- 建立第一個kotlin工程
- 函數
- 函數的概念
- Main函數
- println() 函數
- 交互式編程
- Kotlin函數編寫規則
- 簡易計算器
- 字符串模版
-
優勢
enter description here-
基礎工具下載
-
命令行工具
- github release
- https://github.com/JetBrains/kotlin/releases
- github release
-
eclipse
enter description here- https://www.eclipse.org/
- eclipse安裝kotlin插件
- 安裝1
enter description here- 安裝2
enter description here- 安裝3 後自動重啟
enter description here- 安裝4 安裝成功
enter description here
-
idea
- 官網網址
- http://www.jetbrains.com/idea/
- 三個版本
- Community:
- 社區版,免費,但是功能有限制,AndroidStudio就是基於這個版本定制的。
- http://idea-intellij.com/intellij-community/
- Ultimate:
- 終極版,收費,功能無限制。
- http://idea-intellij.com/intellij-ultimate/
- Community:
- 官網網址
-
-
建立第一個kotlin工程
-
增加環境
enter description here
-
新建工程
- 空白處右鍵
enter description here
-
新建kt文件 右鍵
-
enter description here -
示例圖
enter description here
-
代碼如下
fun main(args:Array<String>){ println("HelloWorld"); }
-
-
運行工程 右鍵運行工程
enter description here
-
含義解釋
enter description here
-
快捷鍵
- 輸入main後 alt+\ 自定彈出下面代碼
-
- 輸入main後 alt+\ 自定彈出下面代碼
-
-
函數
-
函數的概念
- 計算機裏面的函數就是,程序執行的小片段,
- 這些小片段可以有機的組合在一起,完成一個復雜的業務功能
-
Main函數
- main函數是kotlin程序的入口函數,
- 他是計算機運行起來第一個默認找的第一個運行的函數
-
fun main(args:Array<String>){ println("HelloWorld"); } ```
-
println() 函數
- println函數的作用就是打印括號裏面內容到控制臺
-
交互式編程
配置環境變量
enter description here-
Kotlin函數編寫規則
enter description here
示例
enter description here
enter description here-
簡易計算器
enter description here- 作業
enter description here-
字符串模版
enter description here
kotlin學習筆記1-基礎