登录
首页 >  Golang >  Go问答

这个out对象是怎么实现xx接口的?

来源:SegmentFault

时间:2023-01-13 16:09:15 401浏览 收藏

本篇文章向大家介绍《这个out对象是怎么实现xx接口的?》,主要包括go,具有一定的参考价值,需要的朋友可以参考一下。

问题内容

    package main

import (
    "io"
    "os"
)

// var (
//  kernel32DLL                 = syscall.NewLazyDLL("kernel32.dll")
//  setConsoleTextAttributeProc = kernel32DLL.NewProc("SetConsoleTextAttribute")
// )

type xx interface {
    Fd() uintptr
}

// type LogBackend struct {
//     Logger *log.Logger
// }

func main() {
    // NewLogBackend(os.Stdout, "", 0)
    test(os.Stdout)
}

func test(out io.Writer) {
    if _, ok := out.(xx); ok {
        println("get in ")
    }
}

out是怎么实现xx接口的,运行时进入了打印
(如果修改xx接口的Fd的名称 或者返回值则没有实现)

正确答案

传入的并不是单纯的writer对象,而是实现了writer对象功能的file对象。

其实这里有两个问题。

1.传入的参数需要实现Write接口(Writer的接口),才能保证编译通过
2.传入的参数需要实现Fd接口(xx对象所有的接口),才能保证ok=true

你运气好,File 对象(os.Stdout之类的)是实现了两个接口的。

type Writer interface {
    Write(p []byte) (n int, err error)
}

type File
func Create(name string) (*File, error)
func NewFile(fd uintptr, name string) *File
func Open(name string) (*File, error)
func OpenFile(name string, flag int, perm FileMode) (*File, error)
func Pipe() (r *File, w *File, err error)
func (f *File) Chdir() error
func (f *File) Chmod(mode FileMode) error
func (f *File) Chown(uid, gid int) error
func (f *File) Close() error
func (f *File) Fd() uintptr
func (f *File) Name() string
func (f *File) Read(b []byte) (n int, err error)
func (f *File) ReadAt(b []byte, off int64) (n int, err error)
func (f *File) Readdir(n int) ([]FileInfo, error)
func (f *File) Readdirnames(n int) (names []string, err error)
func (f *File) Seek(offset int64, whence int) (ret int64, err error)
func (f *File) Stat() (FileInfo, error)
func (f *File) Sync() error
func (f *File) Truncate(size int64) error
func (f *File) Write(b []byte) (n int, err error)
func (f *File) WriteAt(b []byte, off int64) (n int, err error)
func (f *File) WriteString(s string) (n int, err error)

本篇关于《这个out对象是怎么实现xx接口的?》的介绍就到此结束啦,但是学无止境,想要了解学习更多关于Golang的相关知识,请关注golang学习网公众号!

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