golang中判斷字串是否為空的方法:if len(str) == 0{ }或使用下面的方法判斷:if str == "" { }使用下列方法測試:func Benchmark_Fun(b *testing.B) { ....... }更多golang知識請關注PHP中文網golang教學欄位。