Search Results

1
vote
3answers
1k views

Operator overloading for C++ maps

I need help understanding some C++ operator overload statements. The class is declared like this: template <class key_t, class ipdc_t> class ipdc_map_template_t : public ipd …
0
votes

design by contract tests by assert or by exception?

You should use both. Asserts are for your convenience as a developer. Exceptions catch things you missed or didn't expect during runtime. I've grown fond of …
0
votes

How can I assert() without using abort()?

glib's error reporting functions …
1
vote

How is C# inspired by C++ more than by Java?

One example is the comparison operator == on strings. C# takes the C++ approach and does a lexical compare on the string. Java compares string references. Here's a good …