3 回答
TA贡献1803条经验 获得超6个赞
试试这个
public static void main(String[] args) {
if (!Customer.findCustomer(customers, input, true).equalsIgnoreCase("eee")) {
do something
}
}
TA贡献1826条经验 获得超6个赞
只需将结果分配给这样的变量
public static void main( String[] args ){
value = Customer.findCustomer(customers,input,true);
if(value returned !="eee"){ /*do something*/ }
除了你需要设置客户,并且输入等于什么第一。
public static void main( String[] args ){
input = 'test';
customers = new Customer[];
value = Customer.findCustomer(customers,input,true);
if(value returned !="eee"){ /*do something*/ }
TA贡献1111条经验 获得超0个赞
创建一个变量(引用 String 类型,以便它可以引用 String 对象)并用于赋值返回的字符串对象。现在使用运算符(即=.
public static void main( String[] args ){
String retValue = Customer.findCustomer(customers,input,true);
if(retValue.equals("eee"){
//do processing
}
}
对于参考,您可以看到参考和对象以及运算符的答案参考答案=
添加回答
举报