• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

go学习笔记(3)benchmark

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

benchmark函数以benchmark开头

benchmark的case一般会跑b.N次,且每次执行都如此

在执行过程中会根据实际case的执行时间是否稳定会增加b.N的次数以达到稳态。

package main

import (
	"fmt"
	"testing"
)

func TestPrint(t *testing.T) {
	res := Print1to20()
	fmt.Println("hey")
	if res != 210 {
		t.Errorf("wrong result of Print1to20")
	}
}

func TestPrint1(t *testing.T) {
	res := Print1to20()
	res++
	if res != 211 {
		t.Errorf("wrong result of Print1to20")
	}
}

func TestMain(m *testing.M) {
	fmt.Println("starting...")
	m.Run()
}

func BenchmarkAll(b *testing.B) {
	for n := 0; n < b.N; n++ {
		Print1to20()
	}
}

  执行命令:

go test -bench=.

  

BenchmarkAll执行了200000000,每次执行耗时8.29ns

Benchmark函数首字母必须大写

Benchmark函数也是普通的test case之一,受TestMain限制

go test -benchmark -----只跑benchmark case

package main

import (
	"fmt"
	"testing"
)

func TestPrint(t *testing.T) {
	res := Print1to20()
	fmt.Println("hey")
	if res != 210 {
		t.Errorf("wrong result of Print1to20")
	}
}

func TestPrint1(t *testing.T) {
	res := Print1to20()
	res++
	if res != 211 {
		t.Errorf("wrong result of Print1to20")
	}
}

func aaa(n int) int {
	return n
}

func TestMain(m *testing.M) {
	fmt.Println("starting...")
	m.Run()
}

func BenchmarkAll(b *testing.B) {
	for n := 0; n < b.N; n++ {
		aaa(n)
	}
}

  要注意benchmark函数执行能在一定时间内达到稳态,否则永远执行不完,没有结果

 


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
go列出所有支持的系统平台及其架构发布时间:2022-07-10
下一篇:
Go语言之捧腹网爬虫案例发布时间:2022-07-10
热门推荐
热门话题
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap