Using namespace std vs other alternatives

This question already has an answer here:

  • Why is “using namespace std” considered bad practice? 35 answers

  • This is really one of those things that you can discuss over beer for hours and hours, and still not have an answer everyone is happy with.

    If you are nearly always using std:: functionality, then adding using namespace std; at the beginning of the file is not that bad an idea. On the other hand, if you are using things from more than one namespace (eg writing a compiler using llvm:: and also using std:: , it may get confusing as to which parts are part of llvm and which parts are std:: - so in my compilter project, I don't have a single file with using namespace ...; - instead I write out llvm:: and std:: as needed. There are several functions (unwisely, perhaps) called Type() , and some places use something->Type()->Type() to get the type-thing that I need... Yes, it confuses even me a little at times...

    I also have many things that look like Constants::ConstDecl and Token::RightParen , so that I can quickly see "what is what". All of these COULD be made shorter and "simpler", but I prefer to see where things belong most of the time.

    Being more verbose helps making it easier to see where things belong - but it makes for more typing and more reading, so it is a balance.


    I'd say that generally, you do not declare the use of std globally. I guess if you're making a simple application, that would suffice. However, when you work in a large organization you often times have different namespaces that are used, and those might have overlapping objects. If you have a function in std, and in a namespace that you created, and then call "using namespace std" AND "using namespace yournamespace", you'll get unwanted results when calling that function. When you prefix every call with the namespace, it keeps it clearer and doesn't give issues with overlap.


    general why?

    Naming things is one of the more difficult aspects of software development. Beginners simply have little idea of how their name choices might generate ambiguities later on.

    In particular, our software jargon often has preferred terms for certain issues. These preferences can cause unrelated class instances to be developed with the same (or similar) symbol with similar meanings.

    Some of my often used symbols include init(), exec(), load(), store(), and I use timeStampGet() lots of places. I also use open(), close(), send()/recv() or write()/read().

    So, I could rename init() in each of the 3 name spaces, and 5 objects into which I have added it, but it is much simpler to specify which one I want.
    I find exec() in 2 name spaces and 12 objects. And there are 3 different timeStampGet() methods that I use. Whether namespaces or functions or class methods, these symbols make sense to me.

    Furthermore, I find the 5 char "std::" namespace-as-prefix completely natural, and much preferable to the global "using namespace std". I suppose this comes with practice.

    One more item - any where a larger name space or class name becomes tiresome, I sometimes add a typedef short name ... here are some examples from production code:

    typedef ALARM_HISTORY   ALM_HST;
    typedef MONITOR_ITEM    MI
    typedef BACKUP_CONTROL  BC;
    

    On one team, we agreed to use well defined 'full' names, which, occasionally, became tiresome because of the length. Later in the project, we agreed that typedefs (for short class or namespace names) could be used when they were simple and added no confusion.

    链接地址: http://www.djcxy.com/p/29786.html

    上一篇: “使用”还是明确说明?

    下一篇: 使用命名空间std vs其他选择