| |
|
Post Made Community Wiki by Community♦
|
occurred Nov 12 '08 at 1:25
|
|
|
|
|
|
2
|
|
edited Nov 12 '08 at 0:26
|
C++
- Far to too easy to randomly corrupt memory and create almost impossible-to-find bugs (although, valgrind goes a long way towards fixing this).
- Template error messages.
- When using templates it's easy to end up having to include everything in one file, and then get stupid compile times.
- Standard library is a joke in the modern age (still no threads or network by default?)
- Lots of nasty little bits of C poking through (in particular, all the conversions between short/int/unsigned/etc..)
|
|
|
|
1
|
|
answered Nov 11 '08 at 22:41
|
C++
- Far to easy to randomly corrupt memory and create almost impossible-to-find bugs (although, valgrind goes a long way towards fixing this).
- Template error messages.
- When using templates it's easy to end up having to include everything in one file, and then get stupid compile times.
- Standard library is a joke in the modern age (still no threads or network by default?)
- Lots of nasty little bits of C poking through (in particular, all the conversions between short/int/unsigned/etc..)
|
|
|