我有两个 Java 类。我希望第二个类在被第一个类的方法调用时返回一个“eee”,然后我希望该方法捕获该值并在语句中使用它。Stringmain()main()Stringif
我的问题归结为如何处理另一个类中的方法返回的值,该值不是已声明的变量?
我可以返回“eee”,Eclipse将编译并运行代码,但这是我所能得到的。我不知道如何在方法中拾取它。main()
public static void main( String[] args ){
Customer.findCustomer(customers,input,true);
}
public class Customer {
public static String findCustomer(Customer[] customers, String search, boolean byName) {
...
if (foundCustomer.equalsIgnoreCase("")) {
System.out.println("Customer cannot be found in the system.");
return "eee";
}
在方法中,我希望能够使用if语句,如下所示:main()
If(value returned !="eee"){
do something
}
慕码人8056858
跃然一笑
catspeake
相关分类