Golang Grammar Summary (16): Map

Source: Internet
Author: User
This is a creation in Article, where the information may have evolved or changed.
    • Equivalent to a hash table or dictionary in another language, storing data in key-value form
    • Key must be a type that supports the = = and! = comparison operation, cannot be a function, map, or slice
var m1 map[int]stringm1  =   make   ( map  [ int  "  string   fmt.Println(m1) //map[]varm2 Map[int]string = Make(Map[int]string)m2  [ 1  "    =    " OK " fmt   println   ( m2  )    Span class= "com" style= "Color:rgb (147,161,161)" >//map[1:ok]  m3  :=   make   ( map  [ int  "  string   fmt.Println(m3) //map[]M4:=Map[int]string{4:"D",1:"a",2:"B",3:"C"}fmt.Println(m4) //map[4:d 1:a 2:b 3:c]
Related Article

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.