Dear All,
I find in std::auto_ptr, the private member is define as
template<class _Ty>
class auto_ptr
{
....
private:
const _Ty *_Myptr;
}
what is the meaning of const _Ty *_Myptr; in a class member
decalration?
I appreicate your kind help!
Shuisheng
I find in std::auto_ptr, the private member is define as
template<class _Ty>
class auto_ptr
{
....
private:
const _Ty *_Myptr;
}
what is the meaning of const _Ty *_Myptr; in a class member
decalration?
I appreicate your kind help!
Shuisheng
Comment