一个解析xml文件的类,里面很多这样的函数定义
const TiXmlNode* LastChild( const
char
* value ) const; /// The last child of this node matching 'value'. Will be null if there are no children.
TiXmlNode* LastChild( const
char
* _value ) {
return const_cast< TiXmlNode*
> ((const_cast<
const TiXmlNode*
>(this))->LastChild( _value ));
}
定义一个const函数 和一个非const函数的意义是什么,在第二个函数中使用const_cast转换的意义又是什么 |