当前位置:网站首页>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
边栏推荐
- Progressive JPEG pictures and related
- Applet data attribute method
- c语言指针深入理解
- Uni app implements global variables
- 阿里云发送短信验证码
- Jenkins Pipeline 方法(函数)定义及调用
- 2011-11-21 training record personal training (III)
- Solution to the problems of the 17th Zhejiang University City College Program Design Competition (synchronized competition)
- Ros-11 common visualization tools
- Mengxin summary of LIS (longest ascending subsequence) topics
猜你喜欢
Ros- learn basic knowledge of 0 ROS - nodes, running ROS nodes, topics, services, etc
Rebuild my 3D world [open source] [serialization-1]
Summary and Reflection on issues related to seq2seq, attention and transformer in hands-on deep learning
Understanding rotation matrix R from the perspective of base transformation
Solution to the problems of the 17th Zhejiang University City College Program Design Competition (synchronized competition)
Wechat H5 official account to get openid climbing account
Introduction Guide to stereo vision (6): level constraints and polar correction of fusiello method
Using request headers to develop multi terminal applications
Blogger article navigation (classified, real-time update, permanent top)
Introduction Guide to stereo vision (3): Zhang calibration method of camera calibration [ultra detailed and worthy of collection]
随机推荐
Codeworks round 638 (Div. 2) cute new problem solution
信息與熵,你想知道的都在這裏了
Blue Bridge Cup provincial match simulation question 9 (MST)
520 diamond Championship 7-4 7-7 solution
深入浅出PyTorch中的nn.CrossEntropyLoss
Oracle advanced (III) detailed explanation of data dictionary
Solution to the problems of the 17th Zhejiang University City College Program Design Competition (synchronized competition)
Rebuild my 3D world [open source] [serialization-1]
Explain NN in pytorch in simple terms CrossEntropyLoss
The location search property gets the login user name
. Net service governance flow limiting middleware -fireflysoft RateLimit
[daiy4] copy of JZ35 complex linked list
什么是防火墙?防火墙基础知识讲解
Configuration and startup of kubedm series-02-kubelet
Newton iterative method (solving nonlinear equations)
信息与熵,你想知道的都在这里了
ROS learning 4 custom message
Ros- learn basic knowledge of 0 ROS - nodes, running ROS nodes, topics, services, etc
Programming implementation of ROS learning 5-client node
Return of missing persons