Re: why learn C?
- From: Markus E Leypold <development-2006-8ecbb5cc8aREMOVETHIS@xxxxxxxxxxxxxxxxxxxxx>
- Date: Fri, 30 Mar 2007 10:35:38 +0200
Markus E Leypold <development-2006-8ecbb5cc8aREMOVETHIS@xxxxxxxxxxxxxxxxxxxxx> writes:
"kevin cline" <kevin.cline@xxxxxxxxx> writes:
On Mar 29, 10:09 pm, "Steve" <nospam_steve...@xxxxxxxxxxx> wrote:
"kevin cline" <kevin.cl...@xxxxxxxxx> wrote in message
news:1175215906.645110.217810@xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
On Mar 20, 12:37 pm, <adawo...@xxxxxxxxxxxxx> wrote:
"Marc Boyer" <Marc.Bo...@xxxxxxxxxxxxxxxxxxxxxxxxx> wrote in message >
It has always seemed rather odd to me that people who are as intelligent
as programmers, rarely question the silliness of using tools such as C
and C++ for serious work.
They simply take for granted that the kind
of errors that are so common in those languages are somehow akin to
the laws of nature.
No, what actually happened is that expert C++ developers learned to
use C++ in such a way that those errors can not happen. While it is
possible to write unsafe code in C++, it is also possible to adopt
coding guidelines that makes it easy to find and eliminate unsafe
code, and for most applications, that's quite good enough. One reason
that experts choose C++ over Ada for performance-critical applications
because C++ templates allow compile-time type safety in high-level
code in a way that Ada generics do not.
Please give an example of one case where a C++ template gives more compile
time safety than an Ada generic. I have found just the opposite to be true.
Christopher Grein covered the topic thoroughly here: (http://home.t-
online.de/home/Christ-Usch.Grein/Ada/Dimension.html)
On attempts to achieve compile-time checking of physical units
computations in Ada, he wrote:
"Our attempt leads us to a plethora of overloaded functions. The
number of function definitions afforded runs into the hundreds... So
we have to confess that our attempt to let the compiler check
equations at compile time has miserably failed."
"The big difference is that C++ templates allow type checking during
compile-time, so that no overhead neither in memory space nor in
runtime is incurred. In this respect, C++ templates ARE MORE POWERFUL
than Ada generics."
Ada gives you low-level type safety out of the box, but does not
afford the tools necessary to achieve type-safety in high-level
programming.
I'm inclined to shout nonsense here: You people tend to mistake a type
system for a proof system on the correctness of your program. That are
two different things. Type safety is to avoid execution errors (once
again see Cardelli's introduction into type systems), whereas a type
system is hardly ever powerful enough to proof interesting things
about the correctness of your code -- so if you start proofing
correctness you can well start with a simple, but safe type system and
handle pre- and post-conditions completely in your proof system (that
also applies to subrange types and this kind of stuff).
(And yes that critique also applies to Ada subtyping to a certain
extend.)
Low-level C++ coding is not type safe, but C++ provides
powerful mechanisms to write high-level type-safe code.
That's a bit like saying, "I can write type safe code in C". The point
is, I might be able to write safe code in C, but type safe is an
attribute applying to a language (NOT a single instance of code) and
means that if the type checks are passed, the code is safe with regard
to execution errors (execution errors as defined in Cardelli's paper
again: That are error that bring the program into "undefined states"
or "invoke undefined behaviour" (hello, comp.std.c, can you hear me
:-)))).
The definition allow show that "this piece of code is type safe" makes
Should've been: "The definition also shows ..."
no sense, and that saying "I can write type safe code by keeping to.
certain rules" makes hardly sense also, since it's the very essence of
type safety that it's the type checks that are the litmus test wether
you stuck to the rules or not.
Regards -- Markus
- References:
- Re: why learn C?
- From: adaworks
- Re: why learn C?
- From: kevin cline
- Re: why learn C?
- From: Steve
- Re: why learn C?
- From: kevin cline
- Re: why learn C?
- From: Markus E Leypold
- Re: why learn C?
- Prev by Date: Re: why learn C?
- Next by Date: Re: why learn C?
- Previous by thread: Re: why learn C?
- Next by thread: Re: why learn C?
- Index(es):
Relevant Pages
|