如何检查多个动态数字等于另一个dyanami数字

时间:2017-06-09 16:15:23

标签: java

if (numberContentUnits % 4 == 0 == quantity >= 4){
    getAddToCartMethod(code, quantity);
}

这里我想要动态检查numberContentUnitsquantity。我不希望像4那样的静态版本可以请任何人帮助我......

2 个答案:

答案 0 :(得分:0)

我无法完全理解这个问题,但想帮助你。以下是您问题中的一个简单示例:

案例1。

Sub Test()
Dim a As Long
a = CLng(4) * 10000
Debug.Print a
End Sub

正如你所看到的那样你可以&#34; 4&#34; * public class NewClass2 { public static void main(String[] args) { int quantity = 10; int code = 5; int four = 4; for (int numberContentUnits = 0; numberContentUnits < 50; numberContentUnits++) { if (numberContentUnits % four == 0 == quantity >= 4) { int res = getAddToCartMethod(code, quantity); System.out.println("Res: " + res); } } } private static int getAddToCartMethod(int code, int quantity) { return code + quantity; } } )不是静态的。

案例2。

variable four

这里已经是静态的。 你有什么问题?

答案 1 :(得分:0)

我不确定此代码的预期结果。

public Object getResult(Object objA, Object objB) {
    if(objA instanceof Integer && objB instanceof Integer){
        Integer aInt=(Integer)objA;
        Integer bInt=(Integer)objB;
        //calculate and return...
    }
    //elseif objA instanceOf Long and so on for other types