dongluo3962 2012-11-04 05:53
浏览 29
已采纳

在Go中用类型声明替换包装结构

I want to extend the regexp from the Go standard library to be able to define my own methods. I use the following struct:

type RichRegexp struct {
    *regexp.Regexp
}

As you can see, this struct contains nothing but the wrapped regexp.Regexp. So I wonder whether I could replace this with a simple type declaration like this:

type RichRegexp regexp.Regexp

But how should I write the following func then?

func Compile(expression string) (*RichRegexp, error) {
    regex, err := regexp.Compile(expression)
    if err != nil {
        return nil, err
    }
    return &RichRegexp{regex}, nil // How to do this?
}

I tried to convert regexp.Regexp to my RichRegexp but it didn't compile. What is the general pattern to return a custom type which wraps a underlying type?

  • 写回答

2条回答 默认 最新

  • 红酒泡绿茶 2012-11-04 06:11
    关注
    package main
    
    import (
            "regexp"
    )
    
    type RichRegexp regexp.Regexp
    
    func Compile(expression string) (*RichRegexp, error) {
            regex, err := regexp.Compile(expression)
            if err != nil {
                    return nil, err
            }
    
            return (*RichRegexp)(regex), nil
    }
    
    func main() {
        Compile("foo")
    }
    

    Also here: http://play.golang.org/p/cgpi8z2CfF

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)
编辑
预览

报告相同问题?

悬赏问题

  • ¥100 IED中交流采样通道、以及程序流程的设计
  • ¥15 我如果只想表示节点的结构信息,使用GCN方法不进行训练可以吗
  • ¥15 GPTs营销指令提示词和创建方案
  • ¥15 QT6将音频采样数据转PCM
  • ¥15 本地安装org.Hs.eg.dby一直这样的图片报错如何解决?
  • ¥15 下面三个文件分别是OFDM波形的数据,我的思路公式和我写的成像算法代码,有没有人能帮我改一改,如何解决?
  • ¥15 Ubuntu打开gazebo模型调不出来,如何解决?
  • ¥100 有chang请一位会arm和dsp的朋友解读一个工程
  • ¥50 求代做一个阿里云百炼的小实验
  • ¥15 查询优化:A表100000行,B表2000 行,内存页大小只有20页,运行时3页,设计两个表等值连接的最简单的算法