Re: Defining a subset of C++ (was: C++ jobs down another 40%)
In article <C++-directions-20091224135126@ram.dialup.fu-berlin.de>, ram@zedat.fu-berlin.de (Stefan Ram) wrote:
Christof Warlich <cwarlich@gmx.de> writes:
giving decent directions to the average library user
Maybe these directions would be as follows?
?an interesting difference between "Effective Java" and
"Effective C++" is that my reaction to the latter was to
come up with a set of SOPs that mainly boil down to
"don't use C++ feature x".?
???????????????????????
Bjorn Borud
If I recall correctly, "Effective Java" is a MUNUMENTAL work.
<m3is1ti9kq.fsf@borud.not>
However, the idea of defining a subset of C++ has at least
two problems:
- One can not really isolate a subset from the
rest of the language, at many places the rest
of the language leaks in.
For example, one might try to use/teach ?int? only
(not ?unsinged?, ?short?, or ?long?), but then,
how does one explain the value and/or behavior of
an evaluation of ?-1 < 3000000000??
- This idea is also based on the assumption that
C++ programs are written. They are not. At least
most of the time. Source code is more often /read/
then written (in order to maintain/modify/reuse
code - programs are modified more often than written
from scratch).
Yep. And that is exactly what most people forget, or do not
even realize, thinking that by writing as "advanced" code,
as they can come up with, is that this is all about.
Because READING that "sophisticated" code will take 10 times
longer, if you EVER will be able to see all the subtleties
of it.
So, when I have learned only a subset
of a language, it might not allow me to read many
programs.
--
Programmer's Goldmine collections:
http://preciseinfo.org
Tens of thousands of code examples and expert discussions on
C++, MFC, VC, ATL, STL, templates, Java, Python, Javascript,
organized by major topics of language, tools, methods, techniques.