Slashdot Mirror


User: partingshot

partingshot's activity in the archive.

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

Comments · 203

  1. Re:GDB sucks..NOT! on C++ Answers From Bjarne Stroustrup · · Score: 1

    pretty much every debugger I've seen will do that. VC++ will even let you specify the condition on which to break within the debugger. Have you ever done any work where a graphical display of the data would have been of any help? DDD is good at that sort of thing, the Insight debugger is also good.

  2. Re:Four string classes in a project. on C++ Answers From Bjarne Stroustrup · · Score: 1

    CString cString std::string CVString StringExt the ubiquitous char* doesn't count

  3. Re:Better yet... on C++ Answers From Bjarne Stroustrup · · Score: 1

    soon the standard will require you to return an int. Plus its nice to tell the user of the program the exit code (ever write a shell script?)