General statistics
List of Youtube channels
Youtube commenter search
Distinguished comments
About
Lawrence D’Oliveiro
Fireship
comments
Comments by "Lawrence D’Oliveiro" (@lawrencedoliveiro9104) on "C++ in 100 Seconds" video.
One good thing is, you don’t have to do “using namespace «ns»” to bring everything in, you can individually import names into the current namespace with “using «ns»::«name»”, e.g. “using std::cout” etc.
3
1:20 iostreams turned out to be a poor idea. When writing localized messages, you may need to rearrange the variable parts to cater to different language grammars: printf-style formatting has support for this, iostreams does not.
1
Python lets you “import «fullname» as «nick»”, to shorten the references a bit without resorting to wildcard imports. Has C++ got that feature yet?
1