Tagged Questions

28
votes
9answers
1k views

What is the best way to solve an Objective-C namespace collision?

Objective-C has no namespaces; it's much like C, everything is within one global namespace. Common practice is to prefix classes with initials, e.g. if you are working at IBM, you …
25
votes
7answers
2k views

Unnamed/anonymous namespaces vs. static functions

A little-used feature of C++ is the ability to create anonymous namespaces, like so: namespace { int cannotAccessOutsideThisFile() { ... } } // namespace You would think tha …
20
votes
5answers
2k views

Should Usings be inside or outside the namespace

I have been running StyleCop over some C# code and it keeps reporting that my using statements should be inside the namespace. Is there a technical reason for putting the using st …
18
votes
17answers
3k views

How do you properly use namespaces in C++?

I come from a Java background, where packages are used, not namespaces. I'm used to putting classes that work together to form a complete object into packages, and then reusing the …
14
votes
13answers
1k views

Why is ‘using namespace std;’ considered a bad practice in C++?

Okay, sorry for the simplistic question, but this has been bugging me ever since I finished high school C++ last year. I've been told by others on numerous occasions that my teache …
13
votes
8answers
610 views

Should I stop fighting Visual Studio’s default namespace naming convention?

I'm working on an MVVM project, so I have folders in my project like Models, ViewModels, Windows, etc. Whenever I create a new class, Visual Studio automatically adds the folder na …
12
votes
2answers
377 views

CLSCompliant(true) drags in unused references

Can anyone explain the following behavior? In summary, if you create multiple CLS compliant libraries in Visual Studio 2008 and have them share a common namespace root, a library …
12
votes
8answers
733 views

Should I wrap all my c++ code in its own namespace?

I come from a c# background where everything has its own namespace, but this practice appears to be uncommon in the c++ world. Should I wrap my code in it's own namespace, the unna …
10
votes
9answers
333 views

Changing company name…do we change namespaces?

We plan on changing our company name starting October 1st. All of our namespaces, projects etc use XYZ.ComponentName. My question to you would be, on October 1st, what would you d …
10
votes
8answers
527 views

Do you prefer explicit namespaces or ‘using’ in C++?

When using C++ namespaces, do you prefer to explicitly name them, like this: std::cout << "Hello, world!\n"; Or do you prefer using namespace: using namespace std; cout & …
8
votes
4answers
611 views

Anonymous namespaces

I just joined a new C++ software project and I'm trying to understand the design. The project makes frequent use of anonymous namespaces. For example, something like this may occ …
8
votes
5answers
467 views

Prevent creation of class whose member functions are all static

All the member variables and member functions in my class ClassA are static. If a user is trying (by mistake) to create an object of this class, he receives a warning: "ClassA, l …
8
votes
4answers
413 views

XML namespaces and attributes

I'm trying to understand how namespaces work in XML. When I have an element like foo:bar, the attributes will often not have namespaces on them. But sometimes they will. Are the at …
7
votes
8answers
446 views

Why does everybody use unanchored namespace declarations (i.e. std:: not ::std::)?

It seems to me that using unanchored namespaces is just asking for trouble later when someone puts in a new namespace that happens to have the same name as a root level namespace a …
7
votes
2answers
75 views

Why is the Process class in the Diagnostics namespace?

Why is the Process class part of the Diagnostics namespace? This is a part of design of the BCL that kept me wondering for some time now. I find it kind of counter-intuitive, I fa …

1 2 3 4 5 24 next
15 30 50 per page