Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- Spring
- Sqoop
- vaadin
- tomcat
- SSL
- Eclipse
- window
- Android
- 공정능력
- xPlatform
- plugin
- hadoop
- Express
- GIT
- NPM
- JavaScript
- IntelliJ
- SQL
- 보조정렬
- R
- table
- Python
- MSSQL
- Kotlin
- mybatis
- react
- SPC
- mapreduce
- Java
- es6
Archives
- Today
- Total
반응형
목록android/kotlin (31)
DBILITY
kotlin fundamental summary ( 기초정리 )
기초 실습은 웹에서 가능하다. https://play.kotlinlang.org/ Kotlin Playground: Edit, Run, Share Kotlin Code Online play.kotlinlang.org 확장자 kt로 jvm에서 실행된다. 언제나 그렇듯 main 함수가 프로그램의 entry point다. fun키워드로 함수를 정의한다. 리턴타입이 없으면 Unit( java void에 대응되는)을 지정한다. 안해도 된다. object pascal의 unit이 생각난다..그립다 델파이. package com.dbility.apps.kotlinpractice fun main() { helloWorld() } fun helloWorld(): Unit { println("Hello World!") }..
android/kotlin
2023. 8. 30. 10:58
반응형