Answer Posted / akhilesh kumar jaiswal
A smart pointer is an object that acts, looks and feels like a normal pointer but offers more functionality. In C++, smart pointers are implemented as template classes that encapsulate a pointer and override standard pointer operators. They have a number of advantages over regular pointers. They are guaranteed to be initialized as either null pointers or pointers to a heap object. Indirection through a null pointer is checked. No delete is ever necessary. Objects are automatically freed when the last pointer to them has gone away. One significant problem with these smart pointers is that unlike regular pointers, they don't respect inheritance. Smart pointers are unattractive for polymorphic code. Given below is an example for the implementation of smart pointers.
Example:
template <class X>
class smart_pointer
{
public:
smart_pointer(); // makes a null pointer
smart_pointer(const X& x) // makes pointer to copy of x
X& operator *( );
const X& operator*( ) const;
X* operator->() const;
smart_pointer(const smart_pointer <X> &);
const smart_pointer <X> & operator =(const smart_pointer<X>&);
~smart_pointer();
private:
//...
};
This class implement a smart pointer to an object of type X. The object itself is located on the heap. Here is how to use it:
smart_pointer <employee> p= employee("Harris",1333);
Like other overloaded operators, p will behave like a regular pointer,
cout<<*p;
p->raise_salary(0.5);
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What is the importance of mutable keyword?
Is c++ high level programming language?
what is upcasting in C++?
What is fflush c++?
What is the full form of ios?
What are advantages of using friend classes?
What is ostream in c++?
Explain the operation of overloading of an assignment operator.
What do you mean by “this” pointer?
What is the precedence when there is a global variable and a local variable in the program with the same name?
Is it possible to pass an object of the same class in place of object reference to the copy constructor?
What are activex and ole?
Explain queue. How it can be implemented?
Which c++ operator cannot overload?
Write a corrected statement in c++ so that the statement will work properly. if (4 < x < 11) y=2*x;