Loading User Information from Channel 9
Something went wrong getting user information from Channel 9
Loading User Information from MSDN
Something went wrong getting user information from MSDN
Loading Visual Studio Achievements
Something went wrong getting the Visual Studio Achievements
C9::GoingNative Live: Kate Gregory and Steve Teixeira - Modern C++, AMP, Casablanca, C++ Renaissance
Jul 30, 2012 at 9:14 AMCould you make the mouse cursor disappear in full-screen mode? It's annoying when embedded web videos don't do that.
C9 Lectures: Stephan T. Lavavej - Standard Template Library (STL), 2 of n
Jul 23, 2010 at 9:07 AMGreat lectures, much better presentation than other MSDN videos I've seen.
Never having used much STL, I'm surprised that map doesn't have a const operator[], returning a const reference. Is this because things would get tricky if the supplied key isn't present in the map? Would an exception not suffice here? It could be considered undefined behaviour, just like the out-of-range vector subscript you highlighted in the first video. Perhaps the intention is to guide programmers down a more robust path, since find() can indicate 'not found' through its return value without resorting to exceptions or asserts.