有空看看
一樣是幸福空間收來的
bool CObjectChild::operator==(const CObjectChild & rhs) const
{
// Check two object are the same object type
if ( CObjectData::operator !=(rhs) ) //Call base class 先判斷
return false;
… 做剩下的child 要再判斷的..
}
http://www.pinkoi.com/product/1Jo98UsY 想要學像這樣的皮製品的製作, 課程要再找 (皮要去那裡買? 可不可以用縫糿機?)
http://www.cces.com.tw/TG1049.html 縫糿課 至少要會用機器, 最好可以自己做護照夾 :P
auto_ptr<CPolicyEvent> pPolicyEvent( new CPolicyEvent(pEvent) );
有constructor 和desctructor之後, C++真的可以玩很多東西耶
auto_ptr 這玩意會在離開scope的時候 自動幫你Delete
template<class _Ty>
class auto_ptr
{ // wrap an object pointer to ensure destruction
explicit auto_ptr(_Ty *_Ptr = 0) _THROW0()
: _Myptr(_Ptr)
{ // construct from object pointer
}
~auto_ptr()
{ // destroy the object
delete (_Ty *)_Myptr;
}'
private:
const _Ty *_Myptr; // the wrapped object pointer
}
方便~