golang —— 类型断言的妙用

最近写代码的时候发现编译器老是会给 switch v.(type) 一个简化提醒 could eliminate type assertions in switch cases,于是尝试根据提醒优化了一下:

	switch v := v.(type) {
	case int:
		m[k] = v * 2
	case string:
		m[k] = goStrings.Repeat(v, 2)
	default:
	}

最后发现居然在获取类型的时候会自动转掉,不得不说很贴心了 QAQ,果然码农最懂码农需要什么

posted @ 2023-04-30 09:50  绯狱丸丶  阅读(38)  评论(0编辑  收藏  举报