golang 用`make`创建切片

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了golang 用`make`创建切片相关的知识,希望对你有一定的参考价值。

//Slices have 'length' and 'cap' properties. Length is the actual number of items in a slice, 
//cap is the capacity of the slice, beyond which the cap will be recalculated.

//To make a 0-initialized slice of length 5, cap of 5:
a := make([]int, 5)

//To make an uninitialized slice of a predetermined cap of 5:
a := make([]int, 0, 5)

在 golang 中创建一片缓冲通道

【中文标题】在 golang 中创建一片缓冲通道【英文标题】:Create a slice of buffered channel in golang 【发布时间】:2016-10-08 00:33:24 【问题描述】:

我找不到在 golang 中创建一块缓冲通道的方法。我知道如何创建如下给出的无缓冲通道切片

type ch chan int
channels := make([]ch,5)

【问题讨论】:

切片的类型并不能决定它是否被缓冲;这是在您make 频道时确定的。 【参考方案1】:

这条语句channels := make([]ch,5) 只是分配容器(长度为5 的通道切片)。除此之外,您必须单独初始化每个通道,这是您将它们声明为缓冲而不是无缓冲的时候。因此,扩展您的示例只需这样做:

for i, _ := range channels 
     channels[i] = make(chan int, BufferSize)

【讨论】:

以上是关于golang 用`make`创建切片的主要内容,如果未能解决你的问题,请参考以下文章

golang切片类型

Golang 切片

go语言中实现切片(slice)的三种方式

GoLang中的切片扩容机制

在 golang 中创建一片缓冲通道

golang 二维切片初始化