当前位置:   article > 正文

设计模式这样玩泰简单(Golang版)-迭代器模式_golang 迭代

golang 迭代

场景

老板:现在有一个对象拥有一个私有的属性,是一个列表.设计一个方案,在列表指针不暴露出去的情况下让这个列表能被迭代访问
你:好的老板,那就使用迭代器模式

方案

在这里插入图片描述
迭代器模式,指的是用对象来封装访问一个列表的行为,其效果与for循环是一样的,但是保护了真正的列表可以不被外界访问,又能访问到列表的真正内容.在Java中我们也很经常用迭代器来做操作,像常用的List,Set,Map都可以通过那个对象创建一个迭代器对象,但是在golang中却没有,所以golang入门的同学了解这知识点可能比较陌生,下面我们通过代码来看看是如何利用组合的模式用对象来保护一个列表指针不对外暴露.

实现

see:https://github.com/jjtHappy/design-pattern-so-simple

package main

import "fmt"

type Iterator interface {
	HasNext() bool
	Next() string
	SetList([]string)
}

type IteratorImpl struct {
	index int32
	list []string
}

func (i *IteratorImpl) HasNext() bool  {
	return i.index<int32(len(i.list))
}

func (i *IteratorImpl) Next() string  {
	r:=i.list[i.index]
	i.index++
	return r
}

func (i *IteratorImpl) SetList(list [] string){
	i.list=list
}

type ListOwner struct{
	List []string
}

func (io *ListOwner) Iterator() (i Iterator) {
	i=&IteratorImpl{}
	i.SetList(io.List)
	return i
}

func main()  {
	fmt.Println("老板:实现一个迭代器")
	fmt.Println("你:好的老板")
	lo:=ListOwner{
		List: []string{"hello","world"},
	}
	i:=lo.Iterator()
	for i.HasNext() {
		fmt.Println(i.Next())
	}
}

  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/小蓝xlanll/article/detail/507414
推荐阅读
相关标签
  

闽ICP备14008679号