如何在 Go 中声明数组(或等效数组)
我想做类似的事情(它是有效的),
var myArray [9][3]int
但是当我这样做时
var myArray [someIntVariable][anotherOne]int
它不能使用(我知道为什么,所以我不问这个。) 但有没有其他方法可以让这项工作发挥作用呢?
抱歉我的英语不好。
I want to do something like(it's valid)
var myArray [9][3]int
but when I do
var myArray [someIntVariable][anotherOne]int
It can't be used(I know why, so I'm not asking this.)
But is there any alternative to make this work?
Sorry for my bad English.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
以下内容对您有用吗?
Does the following work for you?
Go 中的“数组”类型将长度作为类型的一部分,因此它们仅适用于长度在编译时固定的情况(类似于 C99 之前的 C 中的“数组”)。如果您想要长度仅在运行时确定的“数组”(例如Java中的数组),那么您真正想要的是“切片”。 mepcotterell 的答案向您展示了如何创建一片切片。
"array" types in Go include the length as part of the type, so they are only good for things where the length is fixed at compile time (similar to "arrays" in C before C99). If you want "arrays" whose length is determined only at runtime (e.g. arrays in Java), what you really want is a "slice". mepcotterell's answer shows you how to create a slice of slices.
您可能还对通用矩阵包感兴趣:
You can also be interested in a generic matrix package: