cn.wensiqun.asmsupport.block.operator
接口 ArithmeticOperator

所有已知子接口:
IBlockOperators, ICInitBody, IEnumCInitBody, IEnumInitBody, IInitBody
所有已知实现类:
Catch, CInitBody, CommonMethodBody, ControlBlock, DoWhileLoop, Else, ElseIF, EnumCInitBody, EnumInitBody, Finally, ForEachLoop, IF, InitBody, MethodBodyForModify, ProgramBlock, SeriesBlock, StaticMethodBody, SuperMethodBody, Synchronized, Try, WhileLoop

public interface ArithmeticOperator


方法摘要
 Addition add(Parameterized factor1, Parameterized factor2)
          generate the instruction that correspond to factor1 + factor2
 Division div(Parameterized factor1, Parameterized factor2)
          generate the instruction that correspond to factor1 / factor2
 Modulus mod(Parameterized factor1, Parameterized factor2)
           
 Multiplication mul(Parameterized factor1, Parameterized factor2)
          generate the instruction that correspond to factor1 * factor2
 Subtraction sub(Parameterized factor1, Parameterized factor2)
          generate the instruction that correspond to factor1 - factor2
 

方法详细信息

add

Addition add(Parameterized factor1,
             Parameterized factor2)
generate the instruction that correspond to factor1 + factor2

参数:
factor1 -
factor2 -
返回:

sub

Subtraction sub(Parameterized factor1,
                Parameterized factor2)
generate the instruction that correspond to factor1 - factor2

参数:
factor1 -
factor2 -
返回:

mul

Multiplication mul(Parameterized factor1,
                   Parameterized factor2)
generate the instruction that correspond to factor1 * factor2

参数:
factor1 -
factor2 -
返回:

div

Division div(Parameterized factor1,
             Parameterized factor2)
generate the instruction that correspond to factor1 / factor2

参数:
factor1 -
factor2 -
返回:

mod

Modulus mod(Parameterized factor1,
            Parameterized factor2)
参数:
factor1 -
factor2 -
返回:


Copyright © 2013. All Rights Reserved.