j
k
j a
j l
From: "nckgl"
how do I define const smart pointer? for example for "int" type 1. scoped_ptr<const int>
how do I define const smart pointer?
for example for "int" type 1. scoped_ptr<const int>
A pointer to const int, similar to int const *.
2. const scoped_ptr<int>
A const pointer to int, similar to int * const.
Back to the thread
Back to the list