zoukankan      html  css  js  c++  java
  • Go 典型并发任务

    学习-极客时间-Go语言从入门到实战 笔记

    单例模式

    代码片段举例:

    package once
    
    import (
    	"fmt"
    	"sync"
    	"testing"
    	"unsafe"
    )
    
    type Movie struct {
    }
    
    var once sync.Once
    var SingleInstance *Movie
    
    func GetInstance() *Movie {
    	once.Do(func() {
    		fmt.Println("create instance")
    		SingleInstance = new(Movie)
    	})
    	return SingleInstance
    }
    
    func TestSingleInstance(t *testing.T) {
    	var wg sync.WaitGroup
    	for i := 0; i < 5; i++ {
    		wg.Add(1)
    		go func() {
    			sing := GetInstance()
    			fmt.Println(unsafe.Pointer(sing))
    			wg.Done()
    		}()
    	}
    	wg.Wait()
    }
    

    仅需任意任务完成

    代码片段举例:

    package only
    
    import (
    	"fmt"
    	"runtime"
    	"testing"
    	"time"
    )
    
    func runTask(id int) string {
    	time.Sleep(10 * time.Millisecond)
    	return fmt.Sprintf("The result is from %d", id)
    }
    
    func FirstResponse() string {
    	numOfRunner := 10
    	ch := make(chan string, numOfRunner)
    	//没有指定channel容量,会导致阻塞,channel等待接收者,协程泄漏
    	//ch := make(chan string)
    	for i := 0; i < numOfRunner; i++ {
    		go func(i int) {
    			ch <- runTask(i)
    		}(i)
    	}
    	return <-ch
    }
    
    func TestOnly(t *testing.T) {
    	t.Log("Before: ", runtime.NumGoroutine())
    	fmt.Println(FirstResponse())
    	time.Sleep(time.Second * 1)
    	t.Log("After: ", runtime.NumGoroutine())
    }
    

    所有任务完成

    代码片段举例:

    package all
    
    import (
    	"fmt"
    	"runtime"
    	"testing"
    	"time"
    )
    
    func runTask(id int) string {
    	time.Sleep(10 * time.Millisecond)
    	return fmt.Sprintf("The result is from %d", id)
    }
    
    func FirstResponse() string {
    	numOfRunner := 10
    	ch := make(chan string, numOfRunner)
    	//没有指定channel容量,会导致阻塞,channel等待接收者,协程泄漏
    	//ch := make(chan string)
    	for i := 0; i < numOfRunner; i++ {
    		go func(i int) {
    			ch <- runTask(i)
    		}(i)
    	}
    	res := ""
    	for j := 0; j < numOfRunner; j++ {
    		res += <-ch + "
    "
    	}
    	return res
    }
    
    func TestOnly(t *testing.T) {
    	t.Log("Before: ", runtime.NumGoroutine())
    	fmt.Println(FirstResponse())
    	time.Sleep(time.Second * 1)
    	t.Log("After: ", runtime.NumGoroutine())
    }
    
  • 相关阅读:
    Object.prototype.toString.call()进行类型判断
    JavaScript中的typeof操作符用法实例
    js ==与===区别(两个等号与三个等号)
    js nextSibling属性和previousSibling属性概述及使用注意
    Java 缓存技术之 ehcache
    不可不知 DDoS的攻击原理与防御方法
    jQuery的选择器中的通配符[id^='code']
    jquery $("[id$='d']").val();这句话什么意思?
    js 数组的操作
    【转】理解js中的原型链,prototype与__proto__的关系
  • 原文地址:https://www.cnblogs.com/yangqi7/p/12425594.html
Copyright © 2011-2022 走看看