摘要: package mainimport "fmt"type SS struct { S string I int}func (s *SS) Test(i int) { s.I=i}func (s *SS) TestString(s string) { s.S=s}func main() { s:=&S 阅读全文
posted @ 2021-12-27 15:05 技术颜良 阅读(69) 评论(0) 推荐(0)