Re: Excessive use of 'this' and performance
Al wrote:
James Kanze wrote:
Al wrote:
James Kanze wrote:
<snip>
Which namespace explicitly included at the beginning of the
file? There might be several. And of course, my editor window
isn't big enough to show the top of the file and my function and
my class definition, and the definition of all of the namespaces
so that I look everything up.
If I see std::remove, I know I'm dealing with a function in the
standard library; if I see Gabi::begin, a function in my
utilities library. If I see just remove or begin, who knows: is
it a class member, or something drawn in by a using declaration,
or...?
Ideally libraries don't include symbols so generic as to lose all
semantic context. From my example, it is fairly clear to me where
something called HtmlTableCell and HtmlInputRadioButton would come from,
given my set of using directives.
In which case, why bother with namespaces to begin with?
Exporting totally context-free symbols such as `i' or `var' or 'num'
would be considered very bad manners, after all, as is currently.
Correct. Which is why the standard library exports e.g.
std::vector and std::find, and not simply vector and find.
Of course, if you use a "using namespace", you may export some
totally context-free symbols, but you're the one who is doing
it, not the library.
(Note that my original statement may have been a little to
strong. I do occasionally use a "using namespace" within a
function or a local block, where it's effects are limited to
that block. Not very often---even there, I prefer something
like "using std::vector"---but if the scope is small enough, the
effects are acceptable. Small enough, IMHO, generally means that
the effects of the "using" are at most 10-15 lines of code.)
<snip>
Take a look at BS' C++ faq:
http://www.research.att.com/~bs/bs_faq2.html
Nearly all examples do away with std:: via using namespace std;
When I'm writing for publishing, I follow a different ruleset
too. Each individual bit of code stands alone, and of course, I
don't use any of the application specific libraries. In fact,
the only global functions are those defined in the article, and
those defined in std::.
Interesting. Does this inconsistency serve a purpose? Why not
write in a good, uniform, best-practices style for all venues?
Because writing has different constraints. My published code
doesn't have any comments either, which is something which is
totally unacceptable in production code. Publishing serves a
different purpose, and it is almost inevitable that the
standards differ. Thus, for example, in production code,
everything must be clear and maintainable; when publishing, the
code is usually designed to demonstrate one particular point,
and all other issues should be made as quiet and as unobtrusive
as possible. In production code, I allow myself 80 columns, and
from what I've seen, I'm very conservative---most people seem to
allow even more; when I published, the magazine (C++ Report)
required 64 columns or less. In published code, I will usually
put the function definition in the class definition, because I'm
writing for a single audience, and separation of concerns isn't
an issue. In production code, I never do this (with the single
exception of the destructor of an interface); I'm writing for
two different audiences, the user and the maintenance
programmer, and their interests are radically different.
<snip>
Interesting. I never would have expected such a strong disposition
against namespaces.
Not a strong disposition against, but I don't see that the
really buy much of anything either. If you're a third party
library supplier, you should probably wrap your library in a
namespace, but I can't see much use for them in application
code, and in a library, you probably don't want to nest them
except in special cases.
Agree to disagree :) ?
As long as I don't have to maintain any of your code. (I've had
to maintain code which used namespaces for everything, and made
extensive use of nested namespaces. A nightmare.)
--
James Kanze (GABI Software) email:james.kanze@gmail.com
Conseils en informatique orient?e objet/
Beratung in objektorientierter Datenverarbeitung
9 place S?mard, 78210 St.-Cyr-l'?cole, France, +33 (0)1 30 23 00 34
--
[ See http://www.gotw.ca/resources/clcm.htm for info about ]
[ comp.lang.c++.moderated. First time posters: Do this! ]