Function CSPPtr<T>::operator !()
Description:
Performs a logical negation on the contained pointer.
 |
Prototype:
bool operator !() const;
Arguments:
No arguments (void).
Return value:
If the contained pointer is null, it returns true. Otherwise, it returns false.
Examples:
CSPPtr<char> sp; ... bool bFlag = !sp;
See also:
member functions operator == (), operator != ()
|
|