Scala Learning Notes (9): Several ways to define the Scala function

Source: Internet
Author: User

Turn from

http://my.oschina.net/scipio/blog/277456

Package Com.persia Object Funcreturntype {      //one, always to return value   def add (x:int,y:int): int={     x+y   }       def Returnunit (): unit={     println ("another means to return void")   }       //notation Two, omitting non-Unit return values, or type deduction based on what is behind the equals sign if there is no write return value   def test (x:int) ={      x   }       //notation three, omit equal sign, return unit   def returnvoid () {     println ("return void")   }       Four: Omit curly braces, if the function contains only one statement, then the curly braces can choose not to write   def max2 (x:int, y:int) = if (x > Y) x else y        def greet () = println ("H Ello, world! ")       def main (args:array[string]): Unit ={      println (add)      println (Test (1))   }}

  

Scala Learning Notes (9): Several ways to define the Scala function

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.