Re: Good idea or gimmick: Go-style OO-programming in C++ ?
jeti789@web.de wrote:
I lately had a short look at Google's Go language which has only
simple support for OOP. My first thought was that a thin OO-layer as
in Go on top of C would have been the right size. C++ in some ways
comes to heavy on "OO-ness", at least IMHO. Made me think how this
kind of thin OO-layer style programming as in Go could be applied to
C++.
Whenever someone has the idea of making a "better, light-weight C++",
what results is a language that produces less efficient and more memory
consuming executables, and which is a lot more rigid from the programmer's
point of view. This is the invariable result because such people always
think that:
1) Handling objects by value is way too problematic (because it makes
things like automatic garbage collection a lot more difficult, breaks
pure OO because not all objects may be dynamically bound, etc.) which
means that classes must only be instantiable dynamically and handled
through references. Given how slow the standard libc allocator is, this
means that creating objects will be at least 10 times slower than how
it is when in C++ you instantiate them on the stack or as an array.
They also consume more RAM (because the memory allocator always needs
to allocate extra memory for its bookkeeping data.)
2) Classes must always be dynamically bound, because that's OO, and it
makes the behavior of classes more consistent (and because of point #1
above, it's now possible to enforce that.) That's certainly true, but
it also means that all objects are now larger by at least the size of
a pointer, no matter how simple and small they would otherwise be, and
even if no dynamic binding is used in them at all. It also makes compiler
optimizations more difficult because the compiler cannot now inline any
member functions because it cannot know if they are actually dynamically
bound.
3) They have been taught through FUD that multiple inheritance is
eeeeeevil and scary, and therefore it must not be supported. Therefore
they will implement a crippled version of multiple inheritance (which
they will call "interfaces"), while still denying the fact that the
language *does* support multiple inheritance (just a crippled version
of it.) This forces code repetition from the programmer's part in many
cases, making the language more rigid.
4) Likewise they have been taught through FUD that C++ templates are
eeeeeevil and scary, and therefore they must not be supported. Therefore
they will implement a crippled version of templates (which they will call
"generics"), while still denying the fact that the language has templates
(just a crippled version of them.) No vectors of ints or anything like
that supported, for no obvious or rational reason (other than that C++
templates are "evil".) This makes the language more rigid and less
efficient.
If you want a concrete example of a popular "C with OO" which some people
consider "better than C++", try Objective-C. It consumes more memory and
everything related to classes is slower than in C++. (According to my
measurements calling a member function is approximately 6 times slower
than calling a virtual function in C++. While it's impressive that they
have succeeded in making the calls that fast, considering that they use
messaging, each member function call is still 6 times slower.) Of course
there is no MI nor templates, and the classes themselves have multitude
of problems (such as no constructors nor destructors, other than by
naming convention and manually having to call them.)
--- news://freenews.netfront.net/ - complaints: news@netfront.net ---