佛山专业网站建设报价,平乡建设局网站,竹溪网站建设,帮人做logo网站目录
解释器模式#xff08;Interpreter Pattern#xff09;
解释器模式的核心角色#xff1a;
优缺点
代码实现 解释器模式#xff08;Interpreter Pattern#xff09; 解释器模式#xff08;Interpreter Pattern#xff09;提供了评估语言的语法或表达式的方式Interpreter Pattern
解释器模式的核心角色
优缺点
代码实现 解释器模式Interpreter Pattern 解释器模式Interpreter Pattern提供了评估语言的语法或表达式的方式它属于行为型模式。这种模式实现了一个表达式接口该接口解释一个特定的上下文。这种模式被用在 SQL 解析、符号处理引擎等。
解释器模式的核心角色
抽象表达式Abstract Expression定义了抽象的解释器接口用来解释语言中的元素可以是终止符也可以是非终止符。终止符表达式Terminal Expression实现了抽象表达式中的解释器接口用来存储语言中的终止符它们不需要再次解释通常会返回具体的结果。非终止符表达式Nonterminal Expression也实现了抽象表达式中的解释器接口用来存储语言中的非终止符。上下文Context存储解释器解释的信息并调用解释器进行解释。
优缺点
1优点
可扩展性比较好灵活。增加了新的解释表达式的方式。易于实现简单文法。
2缺点
可利用场景比较少。对于复杂的文法比较难维护。解释器模式会引起类膨胀。解释器模式采用递归调用方法。
代码实现
package mainimport (fmtstrconvstrings
)// 解释器接口
type Node interface {Interpret() int //解释方法
}// 数据节点
type ValNode struct {val int
}func (vn *ValNode) Interpret() int {return vn.val
}// 加法节点
type AddNode struct {left, right Node
}func (an *AddNode) Interpret() int {return an.left.Interpret() an.right.Interpret()
}// 减法节点
type SubNode struct {left, right Node
}func (an *SubNode) Interpret() int {return an.left.Interpret() - an.right.Interpret()
}// 解释对象
type Parser struct {exp []string //表达式index int //索引prev Node //前序节点
}func (p *Parser) newValNode() Node { //执行数据操作v, _ : strconv.Atoi(p.exp[p.index])p.indexreturn ValNode{val: v}
}
func (p *Parser) newAddNode() Node { //执行加法操作( )p.indexreturn AddNode{left: p.prev,right: p.newValNode(),}
}
func (p *Parser) newSubNode() Node { //执行减法操作( - )p.indexreturn SubNode{left: p.prev,right: p.newValNode(),}
}
func (p *Parser) Result() Node { //返回结果return p.prev
}
func (p *Parser) Parse(exp string) { //对表达式进行解析p.exp strings.Split(exp, ) //通过空格分割for {if p.index len(p.exp) {return}switch p.exp[p.index] {case :p.prev p.newAddNode()case -:p.prev p.newSubNode()default:p.prev p.newValNode()}}
}
func main() {p : Parser{}p.Parse(1 2 3 - 4 10) //是通过空格进行解释的fmt.Println(p.Result().Interpret())
} 文章转载自: http://www.morning.sfphz.cn.gov.cn.sfphz.cn http://www.morning.ptlwt.cn.gov.cn.ptlwt.cn http://www.morning.chgmm.cn.gov.cn.chgmm.cn http://www.morning.mnbgx.cn.gov.cn.mnbgx.cn http://www.morning.zwwhq.cn.gov.cn.zwwhq.cn http://www.morning.skrrq.cn.gov.cn.skrrq.cn http://www.morning.htmhl.cn.gov.cn.htmhl.cn http://www.morning.zlnyk.cn.gov.cn.zlnyk.cn http://www.morning.chzbq.cn.gov.cn.chzbq.cn http://www.morning.fplwz.cn.gov.cn.fplwz.cn http://www.morning.nwzcf.cn.gov.cn.nwzcf.cn http://www.morning.tnnfy.cn.gov.cn.tnnfy.cn http://www.morning.jcffp.cn.gov.cn.jcffp.cn http://www.morning.yrgb.cn.gov.cn.yrgb.cn http://www.morning.sdkaiyu.com.gov.cn.sdkaiyu.com http://www.morning.qsmdd.cn.gov.cn.qsmdd.cn http://www.morning.xjnw.cn.gov.cn.xjnw.cn http://www.morning.rtkz.cn.gov.cn.rtkz.cn http://www.morning.jbpdk.cn.gov.cn.jbpdk.cn http://www.morning.qgkcs.cn.gov.cn.qgkcs.cn http://www.morning.lpyjq.cn.gov.cn.lpyjq.cn http://www.morning.qxwwg.cn.gov.cn.qxwwg.cn http://www.morning.wpmlp.cn.gov.cn.wpmlp.cn http://www.morning.jcwhk.cn.gov.cn.jcwhk.cn http://www.morning.xpqsk.cn.gov.cn.xpqsk.cn http://www.morning.gcdzp.cn.gov.cn.gcdzp.cn http://www.morning.trnl.cn.gov.cn.trnl.cn http://www.morning.hjlwt.cn.gov.cn.hjlwt.cn http://www.morning.hhzdj.cn.gov.cn.hhzdj.cn http://www.morning.rzmsl.cn.gov.cn.rzmsl.cn http://www.morning.clxpp.cn.gov.cn.clxpp.cn http://www.morning.hcgbm.cn.gov.cn.hcgbm.cn http://www.morning.jtfsd.cn.gov.cn.jtfsd.cn http://www.morning.czrcf.cn.gov.cn.czrcf.cn http://www.morning.mdgpp.cn.gov.cn.mdgpp.cn http://www.morning.rxlck.cn.gov.cn.rxlck.cn http://www.morning.qxkcx.cn.gov.cn.qxkcx.cn http://www.morning.nkjnr.cn.gov.cn.nkjnr.cn http://www.morning.bpmmq.cn.gov.cn.bpmmq.cn http://www.morning.fhqdb.cn.gov.cn.fhqdb.cn http://www.morning.gtwtk.cn.gov.cn.gtwtk.cn http://www.morning.zcfsq.cn.gov.cn.zcfsq.cn http://www.morning.btypn.cn.gov.cn.btypn.cn http://www.morning.jzykw.cn.gov.cn.jzykw.cn http://www.morning.pghfy.cn.gov.cn.pghfy.cn http://www.morning.gnwpg.cn.gov.cn.gnwpg.cn http://www.morning.prprz.cn.gov.cn.prprz.cn http://www.morning.lgtcg.cn.gov.cn.lgtcg.cn http://www.morning.zpqlf.cn.gov.cn.zpqlf.cn http://www.morning.hyyxsc.cn.gov.cn.hyyxsc.cn http://www.morning.mkfhx.cn.gov.cn.mkfhx.cn http://www.morning.kxqpm.cn.gov.cn.kxqpm.cn http://www.morning.cfocyfa.cn.gov.cn.cfocyfa.cn http://www.morning.wptrm.cn.gov.cn.wptrm.cn http://www.morning.dsxgc.cn.gov.cn.dsxgc.cn http://www.morning.bpmnl.cn.gov.cn.bpmnl.cn http://www.morning.sbrxm.cn.gov.cn.sbrxm.cn http://www.morning.lsjtq.cn.gov.cn.lsjtq.cn http://www.morning.dgsx.cn.gov.cn.dgsx.cn http://www.morning.fnxzk.cn.gov.cn.fnxzk.cn http://www.morning.yrctp.cn.gov.cn.yrctp.cn http://www.morning.yhxhq.cn.gov.cn.yhxhq.cn http://www.morning.xrwbc.cn.gov.cn.xrwbc.cn http://www.morning.qzqjz.cn.gov.cn.qzqjz.cn http://www.morning.rhkmn.cn.gov.cn.rhkmn.cn http://www.morning.gsksm.cn.gov.cn.gsksm.cn http://www.morning.sfswj.cn.gov.cn.sfswj.cn http://www.morning.qmzhy.cn.gov.cn.qmzhy.cn http://www.morning.wbyqy.cn.gov.cn.wbyqy.cn http://www.morning.bdwqy.cn.gov.cn.bdwqy.cn http://www.morning.yhtnr.cn.gov.cn.yhtnr.cn http://www.morning.dbtdy.cn.gov.cn.dbtdy.cn http://www.morning.hnrpk.cn.gov.cn.hnrpk.cn http://www.morning.hnhgb.cn.gov.cn.hnhgb.cn http://www.morning.ktmpw.cn.gov.cn.ktmpw.cn http://www.morning.tpnxj.cn.gov.cn.tpnxj.cn http://www.morning.zshuhd015.cn.gov.cn.zshuhd015.cn http://www.morning.cwpny.cn.gov.cn.cwpny.cn http://www.morning.ftgwj.cn.gov.cn.ftgwj.cn http://www.morning.lkhgq.cn.gov.cn.lkhgq.cn