It has only to do with the act of correct observation, and by I mean a physical contact with all sorts of objects through all the senses

Golang recover 使用姿势

the way use golang recover

在 Golang 中 recover 函数是用来恢复一个发生panic 的 goroutine 避免整个程序 crash 。基本上 recover 只能和 defer 函数结合使用,因为一旦发生 panic 正常的执行流程会被打断,只有 defer 函数还能正常工作。我们业务中通常会对一些通用的逻辑

霍比特人五军之战

The hobbit five army battle

以前在电脑上把魔戒3部曲看了被里面庞大的世界观所深深吸引,里面有孤芳自赏的精力,快乐狡滑的矮人,有龙,有猎人 有魔法师,有刺客,有战士。一直遗憾没有机会在大屏幕上去欣赏这部神作。然后就听说续作霍比特人五军之战要上映了 约了几个要好的同学去南京新开的据称最大IMAX屏幕的电影院影院观看了该影片。屏幕确

Golang 继承方式

Golang Inheritance

Golang 从设计上不是一个面向对象的语言,也没有一般意义上的继承。 但我们可以通过一些技巧实现类似继承的功能。\n定义\n通过 struct 组合的形式实现继承的功能:\n通过内嵌匿名基类的方式,子的struct可以获得所有的属性包括public和private的\n我们可以在子 struct 中匿名嵌