簡單工廠模式的go代碼示例

       簡單工廠模式很簡單,工廠負責生產對象, 來看下:this package main import ( "fmt" ) type BaseIntf interface { Operate(int, int) int } type AddOperate struct {} func (this *AddOperate)Operate(rhs int, lhs
相關文章
相關標籤/搜索