15 ms·
I wish someone would publish this "tasteful subset of C++," kind of like Douglas Crockford's Javascript: The Good Parts. Then I could just learn that and skip a
by ighost 17y ago
I wish someone would publish this "tasteful subset of C++," kind of like Douglas Crockford's Javascript: The Good Parts. Then I could just learn that and skip all the crazy template shit.
- mullr 17y agoThey did, and it's called "Effective C++". Okay, it's not exactly the same thing. But they both tell you what NOT to do.
- haberman 17y agoCheck out the Google C++ Style Guide. I'm biased (being a Googler), but I think it leads to pretty nice and readable C++: http://google-styleguide.googlecode.com/svn/trunk/cppguide.xml http://google-styleguide.googlecode.com/svn/trunk/cppguide.x...
- Locke1689 17y agoThis is fantastic. My main gripe with C++ in non-system code is that there are too many features which complicate the code base and should never be used. This seems like great guidelines and a good subset.
- ighost 17y agothxu. Too bad it assumes knowledge of C++. I hope I can still follow it with my limited C++ knowledge.