Tagged Questions
A namespace is a container that provides context for identifiers, within which names are unique.
174
votes
6answers
14k 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 statements inside ...
144
votes
15answers
65k views
Javascript Namespace Declaration
What neat ways do you use for declaring JavaScript namespaces. I've come across this one:
if (Foo == null || typeof(Foo) != "object") { var Foo = new Object();}
Is there a more elegant or succinct ...
87
votes
8answers
19k views
Unnamed/anonymous namespaces vs. static functions
A little-used feature of C++ is the ability to create unnamed (anonymous) namespaces, like so:
namespace {
int cannotAccessOutsideThisFile() { ... }
} // namespace
You would think that such a ...
65
votes
15answers
18k 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 teacher was wrong in ...
57
votes
10answers
9k 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 could prefix them ...
41
votes
15answers
25k 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 them later from that ...
37
votes
9answers
774 views
Strategy for developing namespaced and non-namespaced versions of same PHP code
I'm maintaining library written for PHP 5.2 and I'd like to create PHP 5.3-namespaced version of it. However, I'd also keep non-namespaced version up to date until PHP 5.3 becomes so old, that even ...
29
votes
10answers
2k views
What are XML namespaces for?
This is something that I always find a bit hard to explain to others:
Why do XML namespaces exist?
When should we use them and when should we not?
What are the common pitfalls when working with ...
26
votes
1answer
589 views
PHP namespace removal / mapping and rewriting identifiers
I'm attempting to automate the removal of namespaces from a PHP class collection to make them PHP 5.2 compatible. (Shared hosting providers do not fancy rogue PHP 5.3 installations. No idea why. Also ...
26
votes
7answers
3k 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 name to the namespace ...
25
votes
7answers
13k views
Getting all types in a namespace via reflection
How to get all the classes in a namespace through reflection in C#
24
votes
1answer
1k views
Splitting a Clojure namespace over multiple files
Is it possible to split a Clojure namespace over multiple source files when doing ahead-of-time compilation with :gen-class? How do (:main true) and (defn- ...) come into play?
24
votes
6answers
3k views
How can I “unuse” a namespace?
One of the vagaries of my development system (Codegear C++Builder) is that some of the auto-generated headers insist on having...
using namespace xyzzy
...statements in them, which impact on my ...
23
votes
14answers
4k views
Using std Namespace
There seem to be different views on using 'using' with respect to the std namespace.
Some say use ' using namespace std', other say don't but rather prefix std functions that are to be used with ' ...
21
votes
4answers
459 views
Functions with class arguments are leaked from a namespace?
I have a small piece of code here for your consideration which puzzles me quite a lot. The strange thing is that it compiles on both Sun Studio and GCC even though I think it should not.
Consider ...
21
votes
1answer
572 views
What are the pitfalls of ADL?
Some time ago I read an article that explained several pitfalls of argument dependent lookup, but I cannot find it anymore. It was about gaining access to things that you should not have access to or ...
21
votes
2answers
1k 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 referencing another ...
21
votes
6answers
11k views
jQuery XML parsing with namespaces
I'm new to jQuery and would like to parse an xml document.
I'm able to parse regular XML with the default namespaces but with xml such as:
<xml xmlns:s="uuid:BDC6E3F0-6DA3-11d1-A2A3-00AA00C14882" ...
21
votes
7answers
6k views
C++ namespaces advice
Just teaching myself c++ namespaces (coming from a c# background) and i'm really starting to think that all the things that c++ does better then most other languages, nested namespaces isn't one of ...
21
votes
6answers
2k views
Should the folders in a solution match the namespace?
Should the folders in a solution match the namespace?
In one of my teams projects, we have a class library that has many sub-folders in the project.
Project Name and Namespace: ...
20
votes
3answers
823 views
How do I refer the current namespace while declaring it? Is there any word like “self”/“this”?
Here if I rename the namespace I must also remember to look at the rest of the code, and do all necessary changes. Is there any word like self, this or current to refer to current namespace?
...
20
votes
2answers
1k views
What are common conventions for using namespaces in Clojure?
I'm having trouble finding good advice and common practices for the use of namespaces in Clojure. I realize that namespaces are not the same as Java packages so I'm trying to tease out the ...
19
votes
3answers
672 views
Avoiding namespace pollution in Haskell
I'm using lots of different records in a program, with some of them using the same field names, e.g.
data Customer = Customer { ..., foo :: Int, ... }
data Product = Product { ..., foo :: Int, ... }
...
19
votes
9answers
13k views
Using Xpath With Default Namespace in C#
I've got an XML document with a default namespace. I'm using a XPathNavigator to select a set of nodes using Xpath as follows:
XmlElement myXML = ...;
XPathNavigator navigator = ...
18
votes
7answers
691 views
“using namespace” in c++ headers
In all our c++ courses, all the teachers always put using namespace std; right after the #includes in their .h files. This seems to me to be dangerous since then by including that header in another ...
18
votes
4answers
1k views
Is there any way to make Visual Studio stop indenting namespaces?
Visual Studio keeps trying to indent the code inside namespaces.
For example:
namespace Foo
{
void Bar();
void Bar()
{
}
}
Now, if I un-indent it manually then it stays that way. ...
18
votes
1answer
2k views
What the difference between a namespace and a module in F#?
I've just started learning F# (with little prior experience with .NET) so forgive me for what is probably a very simple question: What the difference between a namespace and a module in F#?
Thanks
...
18
votes
4answers
4k views
How to NOT include Visual Studio Project folder names in generated namespaces
How do I prevent the name of the Solution Folder in a VS project from being appended to the namespace generated for new items added to the solution folder?
Example: C# project in a VS solution
...
17
votes
4answers
4k views
Namespaced models in Rails: What's the state of the union?
Since the beginning, Rails has had issues with namespaced models. As time went on, pretty much everybody gave up on using it. Myself included.
With Rails 2.3 out, I'd like an update on the situation. ...
17
votes
8answers
1k 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 unnamed namespace, or no ...
17
votes
1answer
1k views
C++ Namespace question
I am working on some code written by a co-worker who no longer works with the company, and I have found the following code: (which I have cut down below)
namespace NsA { namespace NsB { namespace ...
17
votes
2answers
3k views
How do you handle arbitrary namespaces when querying over Linq to XML?
I have a project where I am taking some particularly ugly "live" HTML and forcing it into a formal XML DOM with the HTML Agility Pack. What I would like to be able to do is then query over this with ...
16
votes
2answers
235 views
Why is it forbidden to open multiple namespaces at a stretch?
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 ...
16
votes
1answer
208 views
STL algorithm function name resolution
I'd expect in the example bellow compiler will fail to compile the code, since it
doesn't know what is "find()", which defined in std namespace in algorithm header.
However this code compiles on RHEL ...
16
votes
5answers
506 views
hiding personal functions in R
I have a few convenience functions in my .Rprofile, such as this handy function for returning the size of objects in memory. Sometimes I like to clean out my workspace without restarting and I do this ...
16
votes
2answers
1k views
Why does a C++ friend class need a forward declaration only in other namespaces?
Suppose I have a class F that should be friend to the classes G (in the global namespace) and C (in namespace A).
to be friend to A::C, F must be forward declared.
to be friend to G, no forward ...
16
votes
2answers
373 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 fail to see the ...
16
votes
4answers
3k views
Why are unnamed namespaces used and what are their benefits?
I just joined a new C++ software project and I'm trying to understand the design. The project makes frequent use of unnamed namespaces. For example, something like this may occur in a class ...
16
votes
7answers
4k views
'Helper' functions in C++
While refactoring some old code I have stripped out a number of public methods that should actually of been statics as they a) don't operate on any member data or call any other member functions and ...
15
votes
2answers
299 views
How to correctly reference a function in an anonymous namespace
Consider this fragment of C++ code:
namespace
{
void f()
{
}
class A
{
void f()
{
::f(); // VC++: error C2039: 'f' : is not a member of '`global ...
15
votes
5answers
7k views
'CompanyName.Foo' is a 'namespace' but is used like a 'type'
Restatement of the question
I'm resurrecting this question because I just ran into this error again today, and I'm still utterly confused why the C# compiler bothers to check for collisions between ...
15
votes
4answers
4k views
How do I create a namespace package in Python?
In Python, a namespace package allows you to spread Python code among several projects. This is useful when you want to release related libraries as separate downloads. For example, with the ...
15
votes
7answers
2k views
Namespace + functions versus static methods on a class
Let's say I have, or am going to write, a set of related functions. Let's say they're math-related. Organizationally, should I:
Write these functions and put them in my MyMath namespace and refer to ...
15
votes
5answers
12k views
The Rails Way - Namespaces
I have a question about how to do something "The Rails Way". With an application that has a public facing side and an admin interface what is the general consensus in the Rails community on how to do ...
14
votes
3answers
120 views
How do you you determine the namespace of a function?
Given a function, how do you determine which namespace it has come from?
For example, if I type mean.default at the command prompt, the output includes the fact that it is in the base package. I ...
14
votes
4answers
710 views
Why unnamed namespace is a“ superior” alternative to static?
The section $7.3.1.1/2 from the C++ Standard reads,
The use of the static keyword is
deprecated when declaring objects in a
namespace scope; the unnamed-namespace
provides a superior ...
14
votes
4answers
2k views
C# Visual Studio 2010 suddenly can't see namespace?
My C# WinForms solution has two projects.
A DLL which is the main project I'm working on, and an executable WinForms I call "Sandbox" so that I can compile/run/debug the DLL easily in one go.
I'm ...
14
votes
2answers
448 views
R writing style - require vs. ::
OK, we're all familiar with double colon operator in R. Whenever I'm about to write some function, I use require(<pkgname>), but I was always thinking about using :: instead. Using require in ...
14
votes
5answers
641 views
What's the purpose of: “using namespace”?
There are convincing arguments against using namespace std, so why was it introduced into the language at all? Doesn't using namespace defeat the purpose of namespaces? Why would I ever want to write ...
14
votes
1answer
2k views
Understanding how JS Module Pattern works
I'm trying to understand js module patterns in use with jQuery. I've edited this a couple of times and will try to end up with a good practice for my skill level (a couple of months fresh on jquery).
...