标签: java bigdecimal
我想检查变量是否为bigDecimal,是否有方法?
我的代码:
private KeystrokeTextField myRate; // how can i check if myRate.getText() is a bigdecimal? BifDecimal test = myRate.getText();
答案 0 :(得分:0)
尝试使用该文本创建BigDecimal(意思是,调用BigDecimal构造函数)。将调用包裹在try/catch。
BigDecimal
try/catch