存储方法值并验证值是否为true

时间:2016-08-11 02:09:55

标签: java variables methods

假设我在Netbeans中有2个项目; ' Pro1的' &安培; ' Pro2的'

我需要将Pro2中的public int method1方法调用Pro1。由于我在method1中调用Pro1,我需要将method1的值存储在storeMethod1的变量中,因此我需要检查存储的值是否正确或不。

那我该怎么做呢? Pro1的代码示例是否正确?

编辑:项目已经添加到库中。除了if语句

之外,一切都还可以

Pro2代码示例:

public int method1(String a, String b, boolean c, String d, int e) {
    // basically, here will just create a function (eg: addUser/User registration)
}

Pro1代码示例:

public class Pro1 {
    ...
    public Response method1() {
        // intialize the variables

        //call the method in Pro2
        Pro2 pro2 = new Pro2();
        int storeMethod1 = pro2.method1(a, b, c, d, e);

        //return the storeMethod1 if able to call method1
        if (storeMethod1 == pro2.toString(method1)) {
             returnData.put("message" , "Success");
        } else {
             returnData.put("message", "Invalid Input");
        }

        return Response.ok (gson.toJson(returnData), MediaType.APPLICATION_JSON).build();
    }
}

提前致谢。

1 个答案:

答案 0 :(得分:0)

您需要将“Project 2”添加到“Project 1”库中。

在netbeans中执行此操作:

  1. 右键单击项目1
  2. 选择“属性”
  3. 选择“图书馆”
  4. 选择“编译”
  5. 选择“添加项目”
  6. 选择Project 2
  7. 点击“确定”