當前位置: 首頁>>代碼示例>>Golang>>正文


Golang Frame.OperandStack方法代碼示例

本文整理匯總了Golang中jvmgo/rtda.Frame.OperandStack方法的典型用法代碼示例。如果您正苦於以下問題:Golang Frame.OperandStack方法的具體用法?Golang Frame.OperandStack怎麽用?Golang Frame.OperandStack使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在jvmgo/rtda.Frame的用法示例。


在下文中一共展示了Frame.OperandStack方法的8個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Golang代碼示例。

示例1: Execute

func (self *FREM) Execute(frame *rtda.Frame) {
	stack := frame.OperandStack()
	v2 := stack.PopFloat()
	v1 := stack.PopFloat()
	result := math.Mod(v1, v2)
	stack.PushFloat(result)
}
開發者ID:wonghoifung,項目名稱:tips,代碼行數:7,代碼來源:rem.go

示例2: Execute

func (self *SWAP) Execute(frame *rtda.Frame) {
	stack := frame.OperandStack()
	slot1 := stack.PopSlot()
	slot2 := stack.PopSlot()
	stack.PushSlot(slot1)
	stack.PushSlot(slot2)
}
開發者ID:wonghoifung,項目名稱:tips,代碼行數:7,代碼來源:swap.go

示例3: Execute

func (self *ICONST_1) Execute(frame *rtda.Frame) {
	frame.OperandStack().PushInt(1)
}
開發者ID:wonghoifung,項目名稱:tips,代碼行數:3,代碼來源:const.go

示例4: Execute

func (self *SIPUSH) Execute(frame *rtda.Frame) {
	i := int32(self.val)
	frame.OperandStack().PushInt(i)
}
開發者ID:wonghoifung,項目名稱:tips,代碼行數:4,代碼來源:ipush.go

示例5: Execute

func (self *POP2) Execute(frame *rtda.Frame) {
	stack := frame.OperandStack()
	stack.PopSlot()
	stack.PopSlot()
}
開發者ID:wonghoifung,項目名稱:tips,代碼行數:5,代碼來源:pop.go

示例6: _lstore

func _lstore(frame *rtda.Frame, index uint) {
	val := frame.OperandStack().PopLong()
	frame.LocalVars().SetLong(index, val)
}
開發者ID:wonghoifung,項目名稱:tips,代碼行數:4,代碼來源:lstore.go

示例7: _iload

func _iload(frame *rtda.Frame, index uint) {
	val := frame.LocalVars().GetInt(index)
	frame.OperandStack().PushInt(val)
}
開發者ID:wonghoifung,項目名稱:tips,代碼行數:4,代碼來源:iload.go

示例8: Execute

func (self *DUP) Execute(frame *rtda.Frame) {
	stack := frame.OperandStack()
	slot := stack.PopSlot()
	stack.PushSlot(slot)
	stack.PushSlot(slot)
}
開發者ID:wonghoifung,項目名稱:tips,代碼行數:6,代碼來源:dup.go


注:本文中的jvmgo/rtda.Frame.OperandStack方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。