go 系列之 once

一、简介

       once 方法用于保证指定函数只执行一次。例如配置懒加载,客户端获取密钥等场景,都可以用到once。

二、技术实现

2.1 Once.go
type Once struct {
	done atomic.Uint32
	m    Mutex
}


func (o *Once) Do(f func()) {

	if o.done.Load() == 0 {
		
		o.doSlow(f)
	}
}

func (o *Once) doSlow(f func()) {
	o.m.Lock()
	defer o.m.Unlock()
	if o.done.Load() == 0 {
		defer o.done.Store(1)
		f()
	}
}
type DemoClient struct {
	secretKey string
	once      sync.Once
}

func (c *DemoClient) getSecretKey() string {
    c.once.Do(func() {
		c.secretKey = string(rand.Int63())
	})
	return c.secretKey
}
2.2 Once.java
public class Once {
    private volatile  boolean done = false;

    private Runnable func;

    public Once(Runnable func) {
        this.func = func;
    }

    public void exec(){
        if (done){
            return;
        }
        synchronized (this){
            if (!done){
                func.run();
                done = true;
            }
        }
    }
}
/**
* 使用样例
*/
public class DemoClient {
    private String secretKey;
    
    private Once once = new Once(()->{
        secretKey = RandUtil.randAlpha(32);
    });
    
    public String getSecretKey(){
        once.exec();
        return secretKey;
    }
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值