vote up 14 vote down star
1

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 saying that we should have "using namespace std;" in our programs, and that std::cout and std::cin are more proper. However, they would always be vague as to why this is a bad practice.

So, I'm asking now: Why is "using namespace std;" considered bad? Is it really that inefficient, or risk declaring ambiguous vars(variables that share the same name as a function in std namespace) that much? Or does this impact program performance noticeably as you get into writing larger applications?

I'm sorry if this is something I should have googled to solve; I figured it would be nice to have this question on here regardless in case anyone else was wondering.

flag

1  
The Google C++ Style Guide doesn't really answer your question but has a lot of general "why"s: google-styleguide.googlecode.com/svn/trunk/… – a paid nerd Sep 21 at 3:17
Greg Hewgill already answered why it can be bad. Another approach is to consider how much work it'd save. The std namespace has a very short name, so it's really not a big deal to type the std:: prefix. Of course in C# it'd have been a different matter. System.Collections.Generic.List<T> takes a bit more effort to write. :) – jalf Sep 21 at 10:23
3  
Don't forget you can do: "using std::cout;" which means you don't have to type std::cout, but don't bring in the entire std namespace at the same time. – Bill Sep 21 at 15:29

13 Answers

vote up 29 vote down check

This is not related to performance at all. But consider this: You are using two libraries called Foo and Bar:

using namespace foo;
using namespace bar;

Everything works fine, you can call Blah() from Foo and Quux() from Bar without problems. But one day you upgrade to a new version of Foo 2.0, which now offers a function called Quux(). Now you've got a conflict: Both Foo 2.0 and Bar import Quux() into your global namespace. This is going to take some effort to fix, especially if the function parameters happen to match.

If you have used foo::Blah() and bar::Quux() then the introduction of foo::Quux() would have been a non-event.

link|flag
Thanks. I had never considered that possibility. – Mana Sep 21 at 3:16
3  
I've always liked Python's "import big_honkin_name as bhn" so you can then just use "bhn.something" rather than "big_honkin_name.something"- really cuts down on the typing. Does C++ have something like that? – paxdiablo Sep 21 at 3:18
14  
@Pax namespace io = boost::filesystem; – AraK Sep 21 at 3:19
You could declare a namespace (short) into which you 'use namespace big_honking_name', then you'd be able to short.something. – Michael Kohne Sep 21 at 3:20
2  
I think it's overstating things to say it's "some effort to fix". You'll have no instances of the new foo::Quux so just disambiguate all your current uses with bar::Quux. – MattyT Sep 21 at 13:44
show 6 more comments
vote up 3 vote down

One shouldn't use using directive at global scope, especially in headers. However there are situations where it is appropriate even in a header file:

template <typename FloatType> inline
FloatType compute_something(FloatType x)
{
    using namespace std; //no problem since scope is limited
    return exp(x) * (sin(x) - cos(x * 2) + sin(x * 3) - cos(x * 4));
}

This is better than explicit qualification (std::sin, std::cos...) because it is shorter and has the ability to work with user defined floating point types (via Argument Dependent Lookup).

link|flag
vote up 2 vote down

I also consider it a bad practice. Why? Just one day I thought that function of a namespace is to divide stuff so I shouldn't spoil it with throwing everything into one global bag. However, if I often use 'cout' and 'cin', I write: using std::cout; using std::cin; in cpp file (never in header file as it propagates with #include). I think that noone sane will ever name a stream cout or cin. ;)

link|flag
vote up 9 vote down

I agree with everything Greg wrote, but I'd like to add: It can even get worse than this! Foo 2.0 could introduce a function Quux() that is an unambiguously better match for some of your calls too Quux() than the bar::Quux() your code called for years. Then your code still compiles, but silently calls the wrong function and does god-knows-what. That's about as bad as things can get.

Keep in mind that the std namespace has tons of identifiers, many of which are very common ones (think list, sort, string, iterator etc.) which are very likely to appear in other code, too.


Here's one more data point: Many, many years ago, I also used to find it annoying having to prefix everything from the standard library with std::. Then I worked in a project where it was decided at the start that both using directives and declarations are banned except for function scopes. Guess what? It took most of us very few weeks to get to used to write the prefix and after a few more weeks most of us even agreed that it actually made the code more readable. (There's a reason for that: Whether you like shorter or longer prose is subjective, but the prefixes objectively add clarity to the code. Not only the compiler, but you, too, find it easier to see which identifier is referred to.)

In almost a decade, that project grew to have several million lines of code. Since these discussions comes up again and again, I once was curious how often the (allowed) function-scope using actually was used in the project. I grep'd the sources for it and only found one or two dozen places where it was used. To me this indicates that, once tried, developers didn't find std:: painful enough to use it even once every 100kLoC even where it was allowed to be used.


Bottom line: Explicitly prefixing everything doesn't do any harm, takes very little getting used to, and has objective advantages. In particular, it makes the code easier to interpret by the compiler and by human readers - and that should probably be the main goal when writing code.

link|flag
vote up 1 vote down
  1. you need to be able to read code written by people who have different style and best practices opinions than you.

  2. If you're only using cout, nobody gets confused. But when you have lots of namespaces flying around and you see this class and you aren't exactly sure what it does, having the namespace explicit acts as a comment of sorts. You can see at first glance, 'oh, this is a filesystem operation' or 'thats doing network stuff'.

link|flag
vote up 0 vote down

I do not think it is necessarily bad practice under all conditions, but you need to be careful when you use it. If you're writing a library, you probably should use the scope resolution operators with the namespace to keep your library from butting heads with other libraries. For application level code, I don't see anything wrong with it.

link|flag
vote up 6 vote down

If you import the right header files you suddenly have names like hex, left, plus or count in your global scope. This might be surprising if you are not aware that std:: contains these names. If you also try to use these names locally it can lead to quite some confusion.

If all the STL stuff is in it's own namespace you don't have to worry about name collisions with your code or other libraries.

link|flag
vote up 15 vote down

I think it's bad to put it in the header files of your classes: because then you would be forcing anyone who wants to use your classes (by including your header files) to also be 'using' (i.e. seeing everything in) those other namespaces.

However, you may feel free to put a using statement in your (private) *.cpp files.

link|flag
vote up 3 vote down

Consider

// myHeader.h
using <sstream>
using namespace std;


// someoneElses.cpp/h
#include "myHeader.h"

class stringstream {  // uh oh
};

Note that this is a simple example, if you have files with 20 includes and other imports you'll have a ton of dependencies to go through to figure out the problem. The worse thing about it is that you can get unrelated errors in other modules depending on the definitions that conflict.

It's not horrible but you'll save yourself headaches by not using it in header files or the global namespace. It's probably alright to do it in very limited scopes but I've never had a problem typing the extra 5 characters to clarify where my functions are coming from.

link|flag
vote up 1 vote down

It depends on where it is located. If it is a common header, then you are diminishing the value of the namespace by merging the into the global. Keep in mind, this could be a neat way of making module globals.

link|flag
vote up 1 vote down

It's all about managing complexity. Using the namespace will pull things in that you don't want, and thus possibly make it harder to debug (I say possibly). Using sdt:: all over the place is harder to read (more text and all that).

Horses for courses - manage your complexity how you best can and feel able.

link|flag
vote up 0 vote down

The only reason I can think of is surprise.

If I see cout << blah, instead of std::cout << blah

I think what is this 'cout'? Is it the normal cout? Is it somethign special?

link|flag
2  
(as a side note, you can use backticks to surround code in normal text, to get this: cout << blah) – Greg Hewgill Sep 21 at 3:16
vote up 0 vote down

IMHO, It's not bad.
Some people prefer to use it, but some (as I) not.

link|flag
technically, nothing is bad. – MathGladiator Sep 21 at 3:16
1  
I exist. Pigs exist. Therefore, I am... a pig? No, that's not right at all... – Matthew Scharley Sep 21 at 3:18
its use is not mandatory, it is only a recommendation of best practices. – lsalamon Sep 21 at 15:53

Your Answer

Get an OpenID
or

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