62,634
社区成员




public class Phone {
void call(String phoneNumber) {
System.out.println("calling " + phoneNumber);
}
}
public class Phone {
private static final String ONE_ONE_ZERO = "110";
void call(String phoneNumber) {
if (ONE_ONE_ZERO.equals(phoneNumber)) {
return;
}
System.out.println("calling " + phoneNumber);
}
}