funcMethod

command
v0.0.0-...-10ffd4c Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Feb 23, 2020 License: MIT Imports: 2 Imported by: 0

README

方法

方法集

一个类型的所有公开方法的集合,称之为这个类型的方法集。方法集用于判断此类型是否满足指定的接口。 当 方法集 >= 接口方法集合 时,表示类型满足接口。

方法集的包含关系在于

  1. T 包含 T 的方法
  2. *T 包含 T 和 *T 的方法
  3. 匿名嵌入 S 后,T 包含 S 的方法
  4. 匿名嵌入 *S 后,T 包含 S 和 *S 的方法
  5. 匿名嵌入 S 或 *S 后,*T 包含 S 和 *S 的方法

特别注意 方法集与实例能够调用的方法无关,不在方法集中的方法也可以被调用 详见本目录下的 main.go 中的代码

Documentation

The Go Gopher

There is no documentation for this package.

Directories

Path Synopsis

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL