Golang Syntax Summary (v): variable Declaration and assignment

Source: Internet
Author: User
This is a creation in Article, where the information may have evolved or changed.

  • Examples of variable declarations and assignments:

var   I  int    =    1    //var keyword declares a variable, followed by a variable name, then the variable type, and finally the assignment  var hehe = "hehe" //可以省略变量类型,编译器根据赋值的类型自动推算变量的类型vara,b,C,D= 1,2,3.14,4 //Simultaneous declaration of multiple and assigned valuesJ: = 10//omit var keyword

  • If it is a global variable, you can do the following:

var (a = 1b uint64 = 3c =3.14d := 4)

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.