是否有可能在常量上下文中使用函数的参数?例如func example(size int) {
one := [size]int{} // Error: non-constant array bound 'size'
const two = size // Error: const initializer 'size' is not a constant
}在这些情况下不是有效常数size吗?如果不是,为什么?
- 1 回答
- 0 关注
- 80 浏览
添加回答
举报
0/150
提交
取消