登录
首页 >  Golang >  Go问答

Go中切片的最大长度

来源:Golang技术栈

时间:2023-04-08 11:36:14 272浏览 收藏

各位小伙伴们,大家好呀!看看今天我又给各位带来了什么文章?本文标题《Go中切片的最大长度》,很明显是关于Golang的文章哈哈哈,其中内容主要会涉及到golang等等,如果能帮到你,觉得很不错的话,欢迎各位多多点评和分享!

问题内容

我在 4Gb 机器的 64 位 linux 操作系统中运行以下代码:

package main

import (
    "fmt"
    "math"
)

func main() {
    r := make([]bool, math.MaxInt32)

    fmt.Println("Size: ", len(r))
}

当我运行它时,我得到:

Size: 2147483647

如果我改变我math.MaxInt32得到math.MaxUint32

fatal error: runtime: out of memory

由于切片大小的math.MaxUint32内存不足,我期待这一点,但是当我尝试使用时,math.MaxInt64我得到:

panic: runtime error: makeslice: len out of range

所以显然我不能创建一个大小为 的切片math.MaxInt64,这给我们带来了我的问题:如果内存不是问题,那么我不能在 Go 中创建的最大切片是什么?

我记得在Java中,原始数组索引是用 type 管理的int,所以原始数组的最大大小是 an 的最大值int,如果你尝试这样做long会引发异常(据我记得) ,和Go一样吗?Go 中的切片索引是否绑定到一种特定类型?

编辑:

我使用struct{}代替bool和分配math.MaxInt64元素来运行测试。一切都按预期进行,并打印:

Size: 9223372036854775807

那么,另一个问题,为什么看起来错误相同(内存不足)时会出现两条不同的错误消息?

每个错误弹出的条件是什么?

正确答案

根据文档,The elements can be addressed by integer indices 0 through len(s)-1. 这意味着切片的最大容量是目标构建上默认整数的大小。

编辑:通过查看源代码,似乎有一个安全检查来确保这个切片大小是完全可能的:

func makeslice(t *slicetype, len64 int64, cap64 int64) sliceStruct {
    // NOTE: The len > MaxMem/elemsize check here is not strictly necessary,
    // but it produces a 'len out of range' error instead of a 'cap out of range' error
    // when someone does make([]T, bignumber). 'cap out of range' is true too,
    // but since the cap is only being supplied implicitly, saying len is clearer.
    // See issue 4085.
    len := int(len64)
    if len64  0 && uintptr(len) > maxmem/uintptr(t.elem.size) {
        panic(errorString("makeslice: len out of range"))
    }

所以在这种情况下,看起来uintptr(len) > maxmem/uintptr(t.elem.size)我们不允许进行这种大小的分配。

但是,当我分配struct{}不占用内存时,允许此大小:

func main(){
    r := make([]struct{}, math.MaxInt64)
    fmt.Println(len(r))
}
// prints 9223372036854775807

本篇关于《Go中切片的最大长度》的介绍就到此结束啦,但是学无止境,想要了解学习更多关于Golang的相关知识,请关注golang学习网公众号!

声明:本文转载于:Golang技术栈 如有侵犯,请联系study_golang@163.com删除
相关阅读
更多>
最新阅读
更多>
课程推荐
更多>
评论列表