Functions in Scala

Source: Internet
Author: User

Definition of the function:

Private def methodName (Argname:type,....): Type

The permission modifier defines a method's keyword method name (parameter name: parameter type): return value ={

Method Body:

"" Return value

}

In Scala, you define a function, and if the function has no arguments, you can omit the parentheses

Scala> def Max (X:int, y:int): int={     |if(X >y) x|Elsey|}max: (X:int, Y:int) Intscala> Max (45,32) Res1:int= 45Scala> Max (4,32) Res2:int= 32Scala> var Yy=max (34,657) Yy:int= 657Scala> Def max (X:int, y:int): int=if(x>y) xElseymax: (X:int, Y:int) Intscala> Def max (x:int, y:int) =if(x>y) xElseymax: (X:int, Y:int) Intscala> def greeting = println ("Hello Word") Greeting:unitscala>Greetinghello Word

Functions in Scala

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.