package main
//定义一个接口,有两个成员方法, 一个show2因为开头字母小写,在包内(main)可以访问,Show因为开头字母大写,在包外可以访问
type ST1 interface {
show2()
Show()
}
type ST struct{}
var (
_ ST1 = &ST{} //检测ST是否实现了ST1定义的方法
_ ST1 = &ST2{} //检测ST2是否实现了ST1定义的方法
)
//实现ST1的中的函数
func (s *ST) Show() {
println("ST")
}
// 实现ST1中的函数
func (s *ST) show2() {
println("ST:show2()")
}
// 继承于ST,并加了新的成员I
type ST2 struct {
ST
I int
}
func (s *ST2) show2() {
println("ST2")
}
func main() {
s := ST2{I: 5}
s.Show()
s.show2()
println(s.I)
}
搜索
标签
study
ab
amap
apache
apahe
awk
aws
bat
centos
CFS
chrome
cmd
cnpm
composer
consul
crontab
css
curl
cygwin
devops
di
docker
docker,docker-compose
ethereum
excel
fiddler
fluentd
framework
front-end
git
gitgui
github
glide
go
golang
gorm
grafana
gzip
ioc
item2
iterm2
javascript
jenkins
jsonp
kafka
laradock
laravel
larval
linux
liunux
log
mac
mac, wi-fi
macos
magento
mariaDB
minikube
mongoDB
msp
mysql
netbeans
nginx
nodejs
nohup
npm
nsq
oracle
php
php-fpm
php7
phpstorm
php扩展
Protobuf
python
redis
scp
server
shell
soap
socket
socket5
sql
sre
ssdb
ssh
ssl
study
sublime
swift
system
td-agent
uml
v2ray
vagrant
vagrnat
vim
vpn
vue
vue.js
webpack
webrtc
websocket
webtatic
windows
windows7
word
wps
xdebug
yarn
yii2
yum
zookeeper
世界国家
互联网
以太坊
分类
前端
小程序
打印机
排序算法
搞笑
权限
粤语
缓存
网络
虚拟机
视频
设计模式
项目管理
热门文章
友情链接