Golang the difference between slice and array

Source: Internet
Author: User
This is a created article in which the information may have evolved or changed.

Before learning go to know that there are these two types, various tutorials, the specific in the document did not go down to say, today when writing SQL reflection do not know which tendons suddenly want to try.

t1 := []string{}println(reflect.TypeOf(t1).Kind().String())t2 := [5]string{}println(reflect.TypeOf(t2).Kind().String())

The output is slice array

The original and go in the array no specific size called slice has a specific size is called an array

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.