码迷,mamicode.com
首页 > 其他好文 > 详细

golang 函数的特殊用法

时间:2019-05-26 19:36:51      阅读:123      评论:0      收藏:0      [点我收藏+]

标签:cal   ack   fir   golang   pre   ring   单元测试   world   second   

1.可以复用一些写法。经常在单元测试过程中需要new一些对象可以new的操作抽离出来

package main

import "fmt"

type S struct {
}

func (s *S) Service1(name string) {
    fmt.Println("Service 1", name)
}

func (s *S) Service2(name string) {
    fmt.Println("Service 2", name)
}

func (s *S) Service3(name string) {
    fmt.Println("Service 3", name)
}

func newService() *S {
    return &S{}
}

func withService(fn func(s *S)) func() {
    return func() {
        fn(newService())
    }
}

func main() {
    withService(func(s *S) {
        s.Service1("first")
    })()
    withService(func(s *S) {
        s.Service2("second")
    })()
    withService(func(s *S) {
        s.Service3("third")
    })()
}

2.中间件

package main

import (
    "fmt"
    "time"
)

func work(name string) {
    fmt.Println("hello ", name)
    time.Sleep(time.Second)
}

func calTime(f func(name string)) func(string) {
    t := time.Now()
    return func(n string) {
        defer func() {
            fmt.Println("time spend is ", time.Since(t))
        }()
        f(n)
    }
}

func main() {
    s := calTime(work)
    s("world")
}

golang 函数的特殊用法

标签:cal   ack   fir   golang   pre   ring   单元测试   world   second   

原文地址:https://www.cnblogs.com/alin-qu/p/10927051.html

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