JAVA中的Double.isNaN,ORACLE里怎么写?
发布网友
发布时间:2023-10-29 09:37
我来回答
共3个回答
热心网友
时间:2024-10-30 16:55
double在oracle里对应的应该是number类型
热心网友
时间:2024-10-30 16:56
/**
* 判断字符串是否是Double型
* @param str 需要判断的字符串
* @return boolean true 是,false则相反。
*/
public static boolean isDouble(String str){
try {
Double.parseDouble(str);
if (str.contains("."))
return true;
return false;
} catch (NumberFormatException e) {
return false;
}
}
热心网友
时间:2024-10-30 16:56
你是不想在oracle中做判断是吗?