62,623
社区成员
发帖
与我相关
我的任务
分享
private static boolean test() {
String test = "asfad-12ds";
return test.contains("-");
}
private static boolean test() {
String test = "asfad-12ds";
if(test.contains("-")){
return true;
}
return false;
}