中级会员
  • 第 1381 位会员
  • neutrous
  • neutroustroup@gmail.com
  • 2014-03-23 13:58:27
  • Offline
  • 0

最近发布的主题

    暂无

最近发布的文章

    暂无

最近分享的资源

    暂无

最近发布的项目

    暂无

最近的评论

  • **Type assertions** For an expression x of interface type and a type T, the primary expression x.(T) asserts that x is not nil and that the value stored in x is of type T. The notation x.(T) is called a type assertion. 上面的内容摘录自[Golang Specification](https://golang.org/ref/spec#Type_assertions) 执行x.(T)主要是看x所存储的Value,你可以试着对r和w都reflect.ValueOf一下,其实际都是*os.File类型