Function of the Go language

Source: Internet
Author: User
This is a creation in Article, where the information may have evolved or changed. In the Go language, function is treated as a type that describes a set of functions that have the same signature and return value.
Since it is a type, we can manipulate the function type as a normal type, such as the following code fragment.
Package Mainimport ("FMT") type F func () type FS []ffunc main () {c: = Fs{func () {fmt. Print ("Hello")}, Func () {fmt. Println ("Douzifly")}}for I: = 0; I < Len (c); i++ {C[i] ()}}

The new type is defined by type f,f is actually the alias of the Func (), which represents a set of functions that have no return value.

Another new type is defined by type, which is a slice of f.

We easily put a set of functions inside a slice, and use loops to call the function inside the slice.

The output of the code snippet:

Hello Douzifly

To expand, we can define a map, map to a function by key, and we can invoke the function at run time through key.


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.