I'm a hobby C++ programmer and CS student, interested in ISO C++ standardization process and compilers/linkers.
Standardese answers:
- How does
boost::is_base_ofwork? - Injected class name and constructor lookup weirdness
-
What happens when
op[]andop T*are both there.
FAQ answers:
Favourite answers:
- Plain
new,new[],deleteanddelete[]in a nutshell. - Assertion failure on
T(a)but allowingT t(a)- forbids (accidental) temporaries. - Explicitly instantiating a typedef to a class type
- Doing
RAIIthe lazy way. - C for-each over arrays.
static_cast,dynamic_castandCcast.inlineand the ODR in C++, andinlinein C99
Top Questions
Top Answers