利用指针 - 如何在切片中操作指针?
来源:stackoverflow
时间:2024-03-09 10:12:27 492浏览 收藏
本篇文章给大家分享《利用指针 - 如何在切片中操作指针?》,覆盖了Golang的常见基础知识,其实一个语言的全部知识点一篇文章是不可能说完的,但希望通过这些问题,让读者对自己的掌握程度有一定的认识(B 数),从而弥补自己的不足,更好的掌握它。
在下面的 main()
代码中:
package main import ( "fmt" "github.com/myhub/cs61a/poetry" ) func main() { p := poetry.newpoem([][]string{ { "and from my pillow, looking forth by light", "of moon or favoring stars, i could behold", "the antechapel where the statue stood", "of newton, with his prism and silent face,", "the marble index of a mind forever", "voyaging through strange seas of thought, alone.", }, { "inducted into greek and christian", "modes of thinking, must take a longer way around.", "like children born into love, they exult in the here", "who have felt separation and grave misgivings, they", "and of humanity, and of god. great literature, like", "struggles to reconcile suffering with faith in the ", }, }) fmt.printf("%t\n", p[0]) }
p[0]
通过使用以下函数构造函数指向第一节来正常工作:
package poetry type line string type stanza []line type poem []stanza func newpoem(s [][]string) poem { var poem poem for _, stanza := range s { var newstanza stanza for _, line := range stanza { newstanza = append(newstanza, line(line)) } poem = append(poem, newstanza) } return poem }
如果,newpoem()
返回*poem
类型的值,如下所示:
package poetry type line string type stanza []line type poem []stanza func newpoem(s [][]string) *poem { var poem poem for _, stanza := range s { var newstanza stanza for _, line := range stanza { newstanza = append(newstanza, line(line)) } poem = append(poem, newstanza) } return &poem }
然后,main()
中的 p[0]
给出以下错误:
Invalid operation: p[0] (type *poetry.Poem does not support indexing)
为什么指向字符串切片切片的指针不支持 p[0]
语法?
解决方案
为什么指向字符串切片切片的指针不支持 p[0]
语法?
简短回答:因为语言规范不允许。
更长的答案:因为很少使用指向切片的指针,为什么要用一些对很多人没有好处的东西来使语言复杂化呢?如果在极少数情况下您确实需要它,只需取消引用指针并索引切片即可。
请注意,规范允许对数组指针进行索引或切片,因为使用数组时,指向数组的指针更常见且更有用(比指向切片的指针)。在这里阅读更多相关信息:Slicing a slice pointer passed as argument
因为指向(任何)切片的指针不是该语言定义支持索引的类型。这是规格:
来源:https://golang.org/ref/spec#Index_expressions
它继续并明确定义了索引如何为每种受支持的类型工作,最后指出否则 a[x] 是非法的。
所以基本上你正在尝试做一些语言不允许的事情。
至于为什么,并谈谈您的设计,指向切片的指针很少有意义。
首先,当你传递一个切片时,移动的数据量绝对是最小的(它只是一个切片头,通常是十几个字节),因此与传递指针相比,没有明显的增益。
然后,在您对问题的评论中,“它看起来是一个更好的抽象,提供指向 poem 类型的指针。”这实际上取决于您想要对 poem
类型做什么。根据您提供的一些细节,我认为传递 *poem
而不仅仅是 poem
实际上是一个更糟糕的设计选择,因为您对指针没有任何好处,而且实际上使事情变得复杂。例如,您不能使用索引 (p[0]
)...
在对此答案的评论中,您问:您认为将 [][]string{...}
传递给 newpoem()
是一个好方法吗?。
就像我在评论中提到的,我们没有太多细节,所以很难说。但目前,您可以执行此操作来创建 poem
:
p := poetry.poem{ { "and from my pillow, looking forth by light", "of moon or favoring stars, i could behold", "the antechapel where the statue stood", "of newton, with his prism and silent face,", "the marble index of a mind forever", "voyaging through strange seas of thought, alone.", }, { "inducted into greek and christian", "modes of thinking, must take a longer way around.", "like children born into love, they exult in the here", "who have felt separation and grave misgivings, they", "and of humanity, and of god. great literature, like", "struggles to reconcile suffering with faith in the ", }, } fmt.printf("%t\n", p[0])
不需要循环或附加或 newpoem
函数或任何东西来直接从字符串创建一首诗。直接使用 poem{...}
类型即可!
如果您需要做一些不同的事情,例如通过从文件中读取数据来创建一首诗,您可以创建一个像这样的函数:
package poetry func ReadFrom(rd io.Reader) Poem { ... }
但是对于简单地在代码中直接创建一首诗,不需要使事情复杂化。
到这里,我们也就讲完了《利用指针 - 如何在切片中操作指针?》的内容了。个人认为,基础知识的学习和巩固,是为了更好的将其运用到项目中,欢迎关注golang学习网公众号,带你了解更多关于的知识点!
-
502 收藏
-
502 收藏
-
501 收藏
-
501 收藏
-
501 收藏
-
139 收藏
-
204 收藏
-
325 收藏
-
477 收藏
-
486 收藏
-
439 收藏
-
- 前端进阶之JavaScript设计模式
- 设计模式是开发人员在软件开发过程中面临一般问题时的解决方案,代表了最佳的实践。本课程的主打内容包括JS常见设计模式以及具体应用场景,打造一站式知识长龙服务,适合有JS基础的同学学习。
- 立即学习 542次学习
-
- GO语言核心编程课程
- 本课程采用真实案例,全面具体可落地,从理论到实践,一步一步将GO核心编程技术、编程思想、底层实现融会贯通,使学习者贴近时代脉搏,做IT互联网时代的弄潮儿。
- 立即学习 507次学习
-
- 简单聊聊mysql8与网络通信
- 如有问题加微信:Le-studyg;在课程中,我们将首先介绍MySQL8的新特性,包括性能优化、安全增强、新数据类型等,帮助学生快速熟悉MySQL8的最新功能。接着,我们将深入解析MySQL的网络通信机制,包括协议、连接管理、数据传输等,让
- 立即学习 497次学习
-
- JavaScript正则表达式基础与实战
- 在任何一门编程语言中,正则表达式,都是一项重要的知识,它提供了高效的字符串匹配与捕获机制,可以极大的简化程序设计。
- 立即学习 487次学习
-
- 从零制作响应式网站—Grid布局
- 本系列教程将展示从零制作一个假想的网络科技公司官网,分为导航,轮播,关于我们,成功案例,服务流程,团队介绍,数据部分,公司动态,底部信息等内容区块。网站整体采用CSSGrid布局,支持响应式,有流畅过渡和展现动画。
- 立即学习 484次学习