登录
首页 >  Golang >  Go问答

利用指针 - 如何在切片中操作指针?

来源: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学习网公众号,带你了解更多关于的知识点!

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