send()成员函数

addr.transfer(eth) 等价于 require(addr.send(eth))

send returns bool,返回bool类型,通过require判断

transaction: Exception if fails,会返回错误提示

推荐用transfer,因为有报错提示

send错了,因为默认不报错,所以用断言

assert(towho.send(1 ether));