高高小蝴蝶

文章
2
资源
0
加入时间
2年10月17天

GO 中实现扩展与复用

GO语言中没有继承,但是提供了一种扩展与复用。废话少说,直接上代码:package ch11import ( "fmt" "testing")type Pet struct {}func (p *Pet) Speak() { fmt.Printf("...")}func (p *Pet) SpeakTo(host string) { p.Spe...

python类型转换

Python 提供了将变量或值从一种类型转换成另一种类型的内置函数int(x [,base ]) 将 x 转换为一个整数long(x [,base ]) 将 x 转换为一个长整数float(x ) 将 x 转换到一个浮点数complex(real [,imag ]) 创建一个复数str(x ) 将对象 x 转换为字符串repr(x ) 将对象 x 转换为表达式字符串eval(str ...