Slashdot Mirror


User: SB7980

SB7980's activity in the archive.

Stories
0
Comments
3
First seen
Last seen
Profile
(view on slashdot.org)

Comments · 3

  1. This is OLD news on Nemesis, the Sun's Binary Star Companion? · · Score: 1

    I must say this is old news. This has already been revealed in the Quran 1400 years ago: Glory be to Him Who created in pairs *all* *things*, of what the earth produces, of themselves, and of which they have no knowledge. [Quran 36:36]

  2. Re:C++ template concepts vs. C# generics constrain on Bjarne Stroustrup Previews C++0x · · Score: 1

    A major difference that I can think off the top of my head is that C++ concepts are not "hard-wired" into the language. People can create non-standard extensions to these concepts and it will "just work".

  3. Re:Worth it? on Bjarne Stroustrup Previews C++0x · · Score: 1
    Within a couple of months, I had fixed about 90 memory handling bugs, which type safety did absolutely nothing to guard against.
    Obviously the system was written more in C than C++, otherwise RAII would have been used. The reason people think C++ cannot handle memory automatically is because many people still write code in C++ that looks too much like C. Real C++ programs use smart pointers where appropriate. Real C++ also never use 'new' directly - use allocators. Double points for polymorphic allocators :)