Menu
×
   ❮   
HTML CSS JAVASCRIPT SQL PYTHON JAVA PHP HOW TO W3.CSS C C++ C# BOOTSTRAP REACT MYSQL JQUERY EXCEL XML DJANGO NUMPY PANDAS NODEJS R TYPESCRIPT ANGULAR GIT POSTGRESQL MONGODB ASP AI GO KOTLIN SASS VUE DSA GEN AI SCIPY AWS CYBERSECURITY DATA SCIENCE
     ❯   

Kotlin 语法


Kotlin 语法

在上一章中,我们创建了一个名为 Main.kt 的 Kotlin 文件,并使用以下代码将“Hello World”打印到屏幕上

示例

fun main() {
  println("Hello World")
}
自己尝试 »

示例解释

fun 关键字用于声明函数。函数是一段旨在执行特定任务的代码块。在上面的示例中,它声明了 main() 函数。

main() 函数是您将在每个 Kotlin 程序中看到的。此函数用于**执行**代码。 main() 函数的括号 {} 内的任何代码都将被**执行**。

例如,println() 函数位于 main() 函数内部,这意味着它将被执行。 println() 函数用于输出/打印文本,在我们的示例中,它将输出“Hello World”。

值得注意的是:在 Kotlin 中,代码语句不必以分号 (;) 结尾(这通常是其他编程语言(如 JavaC++C# 等)所必需的)。


主参数

在 Kotlin 1.3 版本之前,需要使用带参数的 main() 函数,例如:fun main(args : Array<String>)。上面的示例必须这样编写才能工作

示例

fun main(args : Array<String>) {
  println("Hello World")
}
自己尝试 »

注意:这不再是必需的,程序在没有它的情况下也能正常运行。但是,如果您过去一直在使用它,并且将继续使用它,也不会造成任何损害。


×

Contact Sales

If you want to use W3Schools services as an educational institution, team or enterprise, send us an e-mail:
[email protected]

Report Error

If you want to report an error, or if you want to make a suggestion, send us an e-mail:
[email protected]

W3Schools is optimized for learning and training. Examples might be simplified to improve reading and learning. Tutorials, references, and examples are constantly reviewed to avoid errors, but we cannot warrant full correctness of all content. While using W3Schools, you agree to have read and accepted our terms of use, cookie and privacy policy.

Copyright 1999-2024 by Refsnes Data. All Rights Reserved. W3Schools is Powered by W3.CSS.