What is the difference between these two usage of using keyword:
using boost::shared_ptr;
and
using namespace boost;
|
What is the difference between these two usage of
and
|
||||
|
|
Includes only the It is called a using declaration.
Includes all the symbols in the It is called as using directive. Why should you always prefer It is always better to use the first( To quote I find it helpful to think of a |
|||||||||||||||||||
|
|
|||
|
|
|
The first is called The second is called Quoting MSDN:
|
|||
|
|
|
The first only allows you to use the name shared_ptr without the boost:: prefix. The second allows you to use any and all names in the boost namespace withoout the boost:: prefix. Some people frown on the latter but it's never given me any problems. |
|||
|
|