We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
按照书中上下文与代码中的打印描述, 代码中的变量 u应为数组,故初始化应为:u := [5]int{11, 12, 13, 14, 15} 或 u := [...]int{11, 12, 13, 14, 15}。 书中为u := []int{11, 12, 13, 14, 15}
u
u := [5]int{11, 12, 13, 14, 15}
u := [...]int{11, 12, 13, 14, 15}
u := []int{11, 12, 13, 14, 15}
GoProgrammingFromBeginnerToMaster/chapter3/sources/slice_unbind_orig_array.go
Line 6 in af651d9
The text was updated successfully, but these errors were encountered:
感谢指出,已更新到勘误,并更新了slice_unbind_orig_array.go源码。
Sorry, something went wrong.
b3cf6e0
No branches or pull requests
按照书中上下文与代码中的打印描述, 代码中的变量
u
应为数组,故初始化应为:u := [5]int{11, 12, 13, 14, 15}
或u := [...]int{11, 12, 13, 14, 15}
。 书中为u := []int{11, 12, 13, 14, 15}
GoProgrammingFromBeginnerToMaster/chapter3/sources/slice_unbind_orig_array.go
Line 6 in af651d9
The text was updated successfully, but these errors were encountered: