
Kotlin
本专栏主要用于介绍 Kotlin 极速入门及其重要知识点,专栏唯一作者为 : JYLin 。 作者ORCID号:https://orcid.org/0000-0003-0558-6699
YDOOK 林进威的博客
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
YDOOK:Android Studio: Gradle build.gradle 文件最初状态内容代码设置
YDOOK:Android Studio: Gradle build.gradle 文件最初状态内容代码设置 © YDOOK JY Lin 1. 图片展示: 2. 代码展示: // Top-level build file where you can add configuration options common to all sub-projects/modules. buildscript { ext.kotlin_version = "1.4.31" repositories原创 2021-03-01 21:21:53 · 291 阅读 · 0 评论 -
YDOOK:Kotlin 可以用中文编程吗?中文汉语设置变量?
可以! 如图展示: var a:Int = 1 val 维度 = 1 fun main(args: Array<String>) { print(维度+a) } 2原创 2020-08-18 11:42:41 · 421 阅读 · 0 评论 -
Android Studio Toast 提示框显示
1. Use the code mode as follow instead of the past mode in java : Toast.makeText(this, "This is a toast",Toast.LENGTH_SHORT).show() 2. The key point is : use the ( .this ) to replace the former ( Mai...原创 2019-07-22 21:01:47 · 3253 阅读 · 0 评论