|
Re: Trip Report: Ad-Hoc Meeting on Threads in C++
|
Posted: Oct 19, 2006 3:13 AM
|
|
> Nobody is trying to "turn C++ into Java." The committee is > interested in standardizing existing practice. We should > standardize threads for the simple reason that lots of > people are writing multi-threaded C++ programs today. To > not put threads in the standard would be to ingore the > needs of real C++ programmers. > > -- > Eric Niebler
And not putting garbage collection in the standard is not ignoring the needs of real C++ programmers?
I am sorry to say this, but it seems kind of hypocritical.
Many C++ programs suffer from manual memory management, and gc is a priority over threads. I have not used a single C++ application that has not crashed in one way or another, due to some wild pointer or memory leak. And using another language is simply not an option: there is no way to write programs like Firefox, Word, Powerpoint and Visio in languages other than C++, because those other languages do not allow the performance of C++.
Using multithreading currently is very easy, even if there is not a single wrapper library around: hacking together a few classes to wrap the native calls is very very easy. On the other hand, writing a proper garbage collector is impossible (and don't mention Boehm's collector, because a) it is very under-performant(without type information), b) it does not have weak pointers and other facilities).
|
|