我用get.bool调用方法并获取bool值和 我需要更新需要获取布尔类型的其他方法( Value.setValue()),
Bool aa = Entry.getBool();
Value.setValue(aa );
因为我使用了我收到消息 BooleanValue类型中的方法setValue(Boolean)不适用于参数(Bool)
我该怎么做这个演员?
答案 0 :(得分:1)
我认为他要做的是将布尔值转换为布尔值(基元)。如果是这样的话,你可以这样做:
//Construct a Boolean object.
Boolean blnObj = new Boolean("true");
//use booleanValue of Boolean class to convert it into boolean primitive
boolean b = blnObj.booleanValue();
System.out.println(b);