BOOLEAN 和boolean 转换

Boolean---->boolean


/**
* Returns the value of this Boolean object as a boolean
* primitive.
*
* @return the primitive boolean value of this object.
*/
public boolean booleanValue() {
return value;
}

你可能感兴趣的:(BOOLEAN 和boolean 转换)