当前位置:网站首页>Kotlin introductory notes (II) a brief introduction to kotlin functions
Kotlin introductory notes (II) a brief introduction to kotlin functions
2022-07-05 09:13:00 【Meng Meng Mu Xi】
Preface : This tutorial is best done with JAVA Study on the basis of
One 、main Use of functions
(1) Did you learn java My friends should know ,java Of main The method is static , And written in class in .Kotlin It's different , In general, you can write main The function is written in class Outside
class Test{
}
/** I am a main Entry function **/
fun main(args: Array<String>) {
var test=Test();
println("main stay class External execution !")
}Running results :

(2) Of course, there will be main The function is written in class In the method
( This paragraph is reproduced from :https://blog.csdn.net/qq_19306415/article/details/81902197)
class Test{
companion object {
/** I am a main Entry function **/
@JvmStatic
fun main(args: Array<String>) {
var test=Test();
}
}
}explain :
companion object { // I'm a static block
/**
The static variables and static methods defined here , similar java Of :static
**/
}amount to java Medium
public static void main(String[] args){
}Link to the original text :https://blog.csdn.net/qq_19306415/article/details/81902197
Two 、 Ordinary function
Statement : Use fun Keywords to declare (function Abbreviation )
Format :
fun method(param1 : Int , param2 : Int) : Int {
return 0
}
PS: Declare the return value type of the function , If it is Void Don't write ( Omit )
Above method refer to Method name , Parameter one And Parameter two Refers to the parameter name , Method name And Parameter name You can modify it yourself . If you don't want to receive any parameters , Then you can write only a pair of empty parentheses .( This is related to java identical )
Two 、 Built in functions
Definition : from Kotlin Provides a series of built-in functions
Some simple built-in functions :
Such as :Int max(Int num)
usage :( To guide the package : import kotlin.math.max)
fun largerNumber(num1 : Int , num2 : Int) : Int {
return max(num1,num2)
}There are also some complex built-in functions , Such as
- let function
- also function
- with function
- run function
- apply function
- ...
Not today , But the above is biased Java A way of writing ,Kotlin Provides a more convenient syntax format :
(1) When there is only one line of code in a function ,Kotlin Allow us not to write the function body , You can use the only line of code "=" Connected at the tail
fun largerNumber(num1 : Int , num2 : Int) : Int = max(num1 , num2)however , In fact, it can be further simplified ...
(2) because max() Function returns Int value ,largerNumber() The equals sign is used in the tail again , therefore Kotlin It can automatically deduce largerNumber() The return of the function must also be a Int value , So you don't have to show the declaration Int
fun largerNumber(num1 : Int , num2 : Int) = max(num1 , num2)Kotlin The small white , I took notes while studying teacher Guolin's works . If there are any mistakes, please point out ! Thank you for reading !
Reference resources :
Kotlin How to create in a class main function _ New ape blog -CSDN Blog _kotlin main function
《 First line of code Android ( The third edition )》 --- Guo Lin
边栏推荐
- 我的一生.
- scipy.misc.imread()
- Mengxin summary of LIS (longest ascending subsequence) topics
- Explain NN in pytorch in simple terms CrossEntropyLoss
- Summary and Reflection on issues related to seq2seq, attention and transformer in hands-on deep learning
- Global configuration tabbar
- Rebuild my 3D world [open source] [serialization-2]
- Priority queue (heap)
- Huber Loss
- 交通运输部、教育部:广泛开展水上交通安全宣传和防溺水安全提醒
猜你喜欢

Huber Loss

Blogger article navigation (classified, real-time update, permanent top)

Confusion matrix

Wechat H5 official account to get openid climbing account

Applet global style configuration window

Ros- learn basic knowledge of 0 ROS - nodes, running ROS nodes, topics, services, etc
![Rebuild my 3D world [open source] [serialization-2]](/img/e6/aad5f432aca619b992753187729dcf.jpg)
Rebuild my 3D world [open source] [serialization-2]

混淆矩阵(Confusion Matrix)

OpenGL - Model Loading

c语言指针深入理解
随机推荐
Multiple linear regression (gradient descent method)
Golang foundation -- map, array and slice store different types of data
Add discount recharge and discount shadow ticket plug-ins to the resource realization applet
OpenGL - Model Loading
信息与熵,你想知道的都在这里了
Codeworks round 681 (Div. 2) supplement
Wxss template syntax
优先级队列(堆)
Understanding rotation matrix R from the perspective of base transformation
Jenkins pipeline method (function) definition and call
Nodejs modularization
[daiy4] copy of JZ35 complex linked list
Programming implementation of ROS learning 6 -service node
什么是防火墙?防火墙基础知识讲解
[code practice] [stereo matching series] Classic ad census: (4) cross domain cost aggregation
My experience from technology to product manager
C # draw Bezier curve with control points for lattice images and vector graphics
我的一生.
520 diamond Championship 7-4 7-7 solution
File server migration scheme of a company