It's possible to do using namespace foo::bar; (i.e., using the inner namespace without using the outer namespace first / at all), why does the standard forbid to do the following?

namespace foo::bar {
  // open nested namespace bar in foo and extend it...
}

I'm not looking for a workaround, just a possible rational on why this isn't allowed.

link|improve this question

79% accept rate
5  
Really not sure why this question has been downvoted. – DeadMG Jun 12 '11 at 15:19
1  
Voting down / to close perfectly valid questions? A rant isn't a reason to downvote, really. Just edit it out. – Xeo Jun 12 '11 at 15:20
1  
@DeadMG: I'm guessing "the C++ standard is flawed with many aberrations..." can tick people off. – Mat Jun 12 '11 at 15:22
2  
@Warren: Did you mean to directly open a new namespace or to reopen an already declared namespace and extend it? – Xeo Jun 12 '11 at 15:25
1  
It is forbidden because there is no syntax that allows it ;) – FredOverflow Jun 12 '11 at 15:45
show 5 more comments
feedback

2 Answers

I'm not sure "forbidden" is the right word - maybe it was just an oversight. It's a fairly small nice-to-have which isn't really a big deal.

You could also take the point of view that the namespace foo isn't created yet when you write foo::bar, so allowing that syntax makes it look like foo was already created when it was not.

You could also go further and request the ability to write class Foo::MyClass {... to define MyClass in namespace Foo, and the same for functions, variables, etc. But is this feature really necessary and solving any particular pressing problem?

link|improve this answer
1  
If you consider the namespace feature as one feature in the whole C++ language, then it's not a big deal. However, if you just take the namespace feature itself, and compare it to how it works in other languages (such as C#), then it really sucks. Also, I can't think of any ambiguity caused by recursively creating missing namespaces in compound namespace expressions, addressing your second paragraph. – zneak Jun 12 '11 at 16:02
Are you sure you're not overreacting by saying it "really sucks"? It hardly makes namespaces useless or fundamentally inferior to any other system. It's just a minor oversight IMO. – AshleysBrain Jun 12 '11 at 18:55
If you forward-declare class MyClass; in namespace Foo {...}, you can say class Foo::MyClass {...}; (at least with GCC). – Jon Purdy Jun 12 '11 at 20:00
Yeah, the "really" in "really sucks" is probably too strong. Still, C++ developers seem to hate names nested more than 3 levels (per the comments to DeadMG's answer), and I can't help but think it's related to this issue. For instance, in C++ you wouldn't like to have Java-like naming conventions for your namespaces (org::apache::commons::collections::BidiMap, anyone?), and it's kinda weird that the syntax is the main blocker for such names. – zneak Jun 12 '11 at 20:26
The syntax doesn't block it, see DeadMG's answer. Also, I guess most of the time something comes between the namespace declarations, so you wouldn't even use the foo::bar syntax. It's such a tiny tiny thing, has it really affected anything and does it even deserve to say it "sucks"? I say not...! – AshleysBrain Jun 13 '11 at 20:20
feedback

Why make compilers implement it when you could just do

namespace foo { namespace bar {

}}
link|improve this answer
25  
Why make compilers implement any feature when the users can emulate it themselves? Always the same reason: to reduce the users’ work. – Konrad Rudolph Jun 12 '11 at 15:24
2  
Well, that's not really an answer, no? The OP not explicitly asks for workarounds but a possible reasoning. Also, consider nestings > 3. I know, that such abominations shouldn't be done, but they're out there in the wild. :/ – Xeo Jun 12 '11 at 15:24
@Konrad: The compiler saves the user significant work. Not ten characters. @Xeo: Not making people implement it is a perfectly valid reason to not Standardize it- look at export. – DeadMG Jun 12 '11 at 15:29
2  
@DeadMG I find it pretty significant. C++ has such an amount of syntactical clutter that I spend a good part of my programming in C++ actually typing. No modern language should require this. In particular, having to open nested namespace declarations is really annoying. If I could just write namespace x::y::z this would be quite a time-saver. – Konrad Rudolph Jun 12 '11 at 15:36
1  
DeadMG, I can't agree with your argument that the compiler only saves significant work to the user. This is just backwards. From C++03 to C++11, we gained the ability to eliminate the single space character between nested template arguments like std::vector<std::vector<int>>. Who's going to love a language that does the bare minimum to help you? It's not like this feature would get in the way of advanced users either. – zneak Jun 12 '11 at 16:09
show 3 more comments
feedback

Your Answer

 
or
required, but never shown

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