BOOLEAN 和boolean 转换

Boolean---->boolean


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

你可能感兴趣的:(boolean)