what is smart pointer & use of the smart pointer ???

Answers were Sorted based on User's Feedback



what is smart pointer & use of the smart pointer ???..

Answer / satya

Smart pointers are objects which store pointers to
dynamically allocated (heap) objects. They behave much like
built-in C++ pointers except that they automatically delete
the object pointed to at the appropriate time. Smart
pointers are particularly useful in the face of exceptions
as they ensure proper destruction of dynamically allocated
objects. They can also be used to keep track of dynamically
allocated objects shared by multiple owners.

Is This Answer Correct ?    16 Yes 0 No

what is smart pointer & use of the smart pointer ???..

Answer / swarna sekhar dhar

Smart pointers have been the subject of hecatombs of code
written and rivers of ink consumed by programmers and
writers around the world. Perhaps the most popular,
intricate, and powerful C++ idiom, smart pointers are
interesting in that they combine many syntactic and semantic
issues. This chapter discusses smart pointers, from their
simplest aspects to their most complex ones and from the
most obvious errors in implementing them to the subtlest
ones—some of which also happen to be the most gruesome.

In brief, smart pointers are C++ objects that simulate
simple pointers by implementing operator-> and the unary
operator*. In addition to sporting pointer syntax and
semantics, smart pointers often perform useful tasks—such as
memory management or locking—under the covers, thus freeing
the application from carefully managing the lifetime of
pointed-to objects

Is This Answer Correct ?    2 Yes 1 No

Post New Answer

More C++ General Interview Questions

Why would you use pointers in c++?

0 Answers  


How many static variables are created if you put one static member into a template class definition?

0 Answers  


Given the following seqment of code containing a group of nested if instructions: y = 9; if ((x==3) || (x == 5)) y++; else if (x == 2) y *= 2; else if (x == 4 ) y-= 7; else y = 8; Enter a segment of code (without any IF statements) that does exectly the same thing using the switch structure.

1 Answers  


What language does google use?

0 Answers  


What is srand c++?

0 Answers  






Why is main an int?

0 Answers  


What are the two shift operators and what are their functions?

0 Answers  


Out of fgets() and gets() which function is safe to use and why?

0 Answers  


simple c++ program for "abcde123ba" convert "ab321edcba" with out using string

5 Answers  


write the prime no program in c++?

16 Answers  


List the merits and demerits of declaring a nested class in C++?

0 Answers  


Is c++ high level programming language?

0 Answers  


Categories