Re: Compiler for C++ programming
On Sep 11, 2:02 am, Stuart Golodetz
<sgolod...@NdOiSaPlA.pMiPpLeExA.ScEom> wrote:
James Kanze wrote:
On Sep 10, 2:11 pm, Stuart Golodetz
<sgolod...@NdOiSaPlA.pMiPpLeExA.ScEom> wrote:
Christopher Dearlove wrote:
"Richard Herring" <junk@[127.0.0.1]> wrote in message
news:IFBK8FBstLqKFwTL@baesystems.com...
In message
<6ba28a43-c94b-4c43-99cc-191d0eb96...@m38g2000yqd.googlegroups.com>,
Jerome <jerome.c.dso...@gmail.com> writes
Which compiler would be good to learn C++ template programming, on
windows platform.
I have access to VC++, but I have read that VC++ does not provide the
STL library as per the C++ STL standards.
If the above is true
The above may not be true. VC++ 6 was notoriously
non-compliant in many respects, but has long been
superseded by versions which are much closer to the
standard.
And bad as VC++6 was/is, it has most of the STL, although
it's weak on some corners thereof. It's real limitations are
on template member functions and on scope of variables
declared in for statements that make you write VC++6
specific code in these areas. And I have pushed it into
compiler internal errors in some template use areas.
I seem to remember the "fix" for that looked something like:
#if defined(_MSC_VER) && _MSC_VER <= 1200
#define for if(0); else for // VC++6 scoping bugfix
#endif
There was never any need for any fix; you just didn't use
the variable after the for. The only way this was ever a
problem was that it allowed some legacy code to compile,
although it wasn't legal.
If you have code which reuses a loop variable (like i) for
another later loop, it can also cause problems. Or is that bad
practice? :)
Well, it certainly doesn't help readability. Within a function,
it's usual practice to give all variables different names,
regardless. And of course, if a function contains two
successive loops, one really should ask if it shouldn't be two
different functions.
--
James Kanze