-
Notifications
You must be signed in to change notification settings - Fork 278
继承调用
rencalo770 edited this page Feb 9, 2021
·
1 revision
- golang的继承和实现不如java直接明白,golang的继承其实是组合模式,或者可以直接说golang没有继承这一概念
- 方法实现了某接口,删除接口定义时,对golang代码的编译执行没有任何影响.
- 前面已经提到,在gengine中,只要不超过A.B形式的两层调用写法,都是合法的语法.
//define
type Man struct {
Eat string
Drink string
}
// define
type Father struct {
*Man
Son string
}
//rule
const ext_rule = `
rule "extends test" "extends test"
begin
Father.Son = "tom"
Sout(Father.Son)
Father.Eat= "apple"
Sout(Father.Eat)
end
`
测试: https://github.com/bilibili/gengine/blob/main/test/complex/extends_test.go