2
在bytes_test.go我看到:bytes.Split分離器爲[]字節( 「...」)
a := Split([]byte(tt.s), []byte(tt.sep), tt.n)
其中tt.s和tt.sep都是字符串。但是,當我嘗試做
a := bytes.Split([]byte("test"), []byte("e"), 0)
我得到:
cannot convert "test" (type ideal string) to type []uint8 in conversion
cannot convert "e" (type ideal string) to type []uint8 in conversion
謝謝!似乎我只是與我的PATH混淆,並使用舊版本(雖然有新的)。 – idavydov 2010-03-06 08:28:12