
Kotlin初入门
哎吆我呸
如果前路无知己,那么自己负重前行。
展开
-
Android kotlin开发项目MVP架构搭建
1、引入需要的网络库 implementation 'com.squareup.retrofit2:retrofit:2.7.1' implementation 'com.squareup.retrofit2:converter-gson:2.7.1' implementation 'com.jakewharton.retrofit:retrofit2-kotlin-coroutines-adapter:0.9.2' implementation 'com.squareu原创 2020-10-02 10:25:59 · 774 阅读 · 0 评论 -
Kotlin的基本数据类型以及if语句,三元运算符
Kotlin的八大基本数据类型var num = 0; val number = 1.0; var n = 5.0f; val b :Boolean; val a :Long; val c :Short; val d : Char; val e: Byte; num+=number.toInt(); n+=number.toFloat();跟java不同的地方,相信大家跟我一样,都是因为今年的Goo原创 2017-05-23 09:26:57 · 11736 阅读 · 2 评论 -
Kotlin基础 if,for,while语句
1.if语句val num = 1 if(num==1){ println("monday"); }else if(num==2){ println("tsd"); }else{ println("nono"); } if (x == 3 || x == 4 || x == 5) println(""+x + "春季") else i原创 2017-05-24 09:20:50 · 1273 阅读 · 0 评论