vote up 2 vote down star

Does a C++ namespace alias defined inside a function definition have a block, function, file, or other scope (duration of validity)?

flag
Do you mean "using [namespace];" ? – Nick Bedford Sep 30 at 0:56
It looks like he means the aliasing of a longer namespace name to that of a more easily used identifier: msdn.microsoft.com/en-us/library/… – Twisol Sep 30 at 1:00
1  
namespace alias (and using declarations) have the same scoping rules as other declarations in C++. – Martin York Sep 30 at 1:46

6 Answers

vote up 6 vote down check

It's a block duration of validity. E.g If you define a namespace alias as below, the namespace alias abc would be invalid outside {...} block.


 {  
    namespace abc = xyz;
    abc::test t;  //valid 
 }
  abc::test t;  //invalid

link|flag
vote up 0 vote down

It would have the scope of the block in which it was defined - likely to be the same as function scope unless you declare the alias inside a block within a function.

link|flag
vote up 0 vote down

I'm fairly certain that a namespace alias only has scope within the block it's created in, like most other sorts of identifiers. I can't check for sure at the moment, but this page doesn't seem to go against it.

link|flag
vote up 0 vote down

As far as I know, it's in the scope it's declared. So, if you alias in a method, then it's valid in that method, but not in another.

link|flag
vote up 1 vote down

The scope is the declarative region in which the alias is defined.

link|flag
vote up 0 vote down

Take a look at http://en.wikibooks.org/wiki/C++_Programming/Scope/Namespaces

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.