码迷,mamicode.com
首页 > 编程语言 > 详细

[日常] Go语言圣经--接口约定习题

时间:2018-04-25 00:20:07      阅读:600      评论:0      收藏:0      [点我收藏+]

标签:erro   spl   思路   nil   pac   int   种类型   存在   error   

Go语言圣经-接口
1.接口类型是对其它类型行为的抽象和概括
2.Go语言中接口类型的独特之处在于它是满足隐式实现的
3.Go语言中还存在着另外一种类型:接口类型。接口类型是一种抽象的类型
4.一个类型可以自由的使用另一个满足相同接口的类型来进行替换被称作可替换性(LSP里氏替换)

练习 7.1: 使用来自ByteCounter的思路,实现一个针对对单词和行数的计数器。你会发现bufio.ScanWords非常的有用。

package main

import (
        "bufio"
        "fmt"
        "strings"
)

func main() {

        var c WordsCounter
        fmt.Fprintf(&c, "hello world 123")
        fmt.Println(c) //输出 3
}

/*
练习 7.1: 使用来自ByteCounter的思路,实现一个针对对单词和行数的计数器。你会发现bufio.ScanWords非常的有用。
*/
type ByteCounter int 

func (c *ByteCounter) Write(p []byte) (int, error) {
        *c += ByteCounter(len(p)) // convert int to ByteCounter
        return len(p), nil 
}

//定义类型
type WordsCounter int 

//满足相同接口的类型
func (w *WordsCounter) Write(p []byte) (int, error) {
        //分隔字符串
        s := strings.NewReader(string(p))
        bs := bufio.NewScanner(s)
        bs.Split(bufio.ScanWords)
        sum := 0
        for bs.Scan() {
                sum++
        }   
        *w = WordsCounter(sum)
        return sum, nil 
}

  

[日常] Go语言圣经--接口约定习题

标签:erro   spl   思路   nil   pac   int   种类型   存在   error   

原文地址:https://www.cnblogs.com/taoshihan/p/8934401.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!