Re: Question about Program and Linkage (3.5) again
On May 8, 5:15 am, jg <jgu...@gmail.com> wrote:
C++ std 3.5p6 has the following example:
-------------------------
static void f();
static int i = 0; //1
void g() {
extern void f(); // internal linkage
int i; //2: 'i' has no linkage
{
extern void f(); // internal linkage
extern int i; //3: external linkage
}
}
There are three objects named i in this program. The object with
internal linkage introduced by the declaration in global scope (line //
1), the object with automatic storage duration and no linkage
introduced by the declaration on line //2, and the object with static
storage duration and external linkage introduced by the declaration on
line //3.
----------------------------------
I tried g++ (4.1.1) and i at //3 is the same as i at //1,
which is wrong according to the standard. Why does C++
require i at //3 to be an external object (what is the
rationale)?
Because it has to define something:-). Seriously, I don't think
that the authors of the standard wanted people to write this
sort of thing, so they probably didn't worry too much about
making it intuitive. All they did was provide an arbitrary
definition so that compiler writers had something to go on.
In this case, in //3, the only "i" which is visible is the one
in //2. Since it makes no sense to apply "extern" to a local
variable, the decision is that //3 declares (not defines) a new
variable. Since the "i" in //1 is not visible at this instant,
it can't be that "i".
To me, because this translation unit declares i as internal
linkage at //1 to hide 'extern i',
Whether a name is hidden or not depends on scope, not linkage.
Making i at //3 to refer i at //1 is reasonable. If this
translation unit wants to use extern i, it shouldn't have
hidden i in the first place, right ?
That would also be reasonable.
As I said, I think the committee just chose one reasonable
possibility, arbitrarily. In practice, if you want to use a
global "i" defined in another translation unit, anywhere in your
translation unit, you will provide a single extern declaration,
at namespace scope---in fact, this declaration should normally
be in a header file which you include. And you won't hide this
declaration anywhere. That's what "best practices" would
certainly recommend, and that's something about which the
committee will seriously consider all of the alternatives, in
order to be relatively sure of choosing the best. For things
like the above, which are really mostly present for legacy
reasons, and that one doesn't expect to find it well written
code, the committee typically invests a lot less effort in
deciding what is "best".
Finally, since users don't (hopefully) write such code, compiler
writers don't worry about it too much either, as long as they
don't get a bug report, and probably don't consider an error too
important, even if they do get a bug report. If it would be
trivial to fix the error, fine, but if it required a major
reorganization of the internal structures, most users would
probably prefer the time and effort be invested in other things.
--
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
---
[ comp.std.c++ is moderated. To submit articles, try just posting with ]
[ your news-reader. If that fails, use mailto:std-c++@ncar.ucar.edu ]
[ --- Please see the FAQ before posting. --- ]
[ FAQ: http://www.comeaucomputing.com/csc/faq.html ]