c++ - Scoped Pointer in Boost : What does mean a raw pointer? -
i read in article smart pointers in boost :
"scoped_ptr raw pointers, while scoped_array useful dynamic arrays."
but didn't mean "raw pointers", neither sentence.
could of explain me this? thanks
their wording unfortunate. "raw" pointers, people mean primitive pointer types, regardless of point to. mean is:
scoped_ptr pointers single objects, while scoped_array useful dynamic arrays
Comments
Post a Comment