vote up 4 vote down star

Where do you guys generally look for developments in C++, most importantly, developments in new standard and its approx/scheduled release data? also boost (well, boost.com)

Is there a centralized place?

thx

flag

It seams like C++0x has been taking forever! – Lucas McCoy Aug 12 at 2:14
The good news it will last [forever] too! – Andrei Aug 12 at 2:18
This is the problem with a language that ins't "developed" by anyone (like Microsoft & C#). It can take forever to get updated. Just look at Java. – Lucas McCoy Aug 12 at 4:00
Which makes it stable, and considering how widely used it is, is arguably a good thing. – KTC Aug 12 at 11:34
@KTC: Oh it's stable, but look at how long it's been since the last update. I think it's something like 1998!??! If your using a framework like Qt, then it's easy to use, but if your using regular C++ and the WinAPI, it can really suck. – Lucas McCoy Aug 12 at 14:13
show 1 more comment

5 Answers

vote up 0 vote down check

C++ has been updated much here lately. I would recommend wikipedia's article on C++ though. It usually is kept up to date (not that a lot's changed). I guess the closest thing to a specification that I've found is Bjarne Stroustrup's book (the creator of the C++ language) on, what else, the C++ language.

link|flag
please don't forget to provide the link. – Andrei Aug 12 at 2:17
vote up 1 vote down

Since I lurk on the Boost Developers' mailing list, I tend to become informed of interesting new developments in the Standard that way. There is usually an announcement of some kind by the folks who are both in Boost and on the committee, and this usually prompts me to look at the committee papers, and also provides for some very interesting informed discussion.

link|flag
vote up 5 vote down

In the past I've used the C++0x wiki entry, and to a lesser extent, the Informit C++ Reference. Recently, I came across a new blog that people may want to check out. It appears to have been started by a couple of committee members:

We started this site because the community at large seems especially hungry—right now—to know more about, and to be more involved in, what's happening on the cutting edge of C++. We're going to be writing articles on C++0x and advanced C++03. ... Thanks for visiting C++Next, Dave Abrahams and Doug Gregor

http://cpp-next.com

link|flag
vote up 8 vote down

You go to the C++ Standard Committee website:

Home: http://www.open-std.org/JTC1/SC22/WG21/

And for a quick access to any published papers:

http://www.open-std.org/jtc1/sc22/wg21/docs/papers/

link|flag
vote up 2 vote down

A lot of insiders to the standards working group discuss and post at comp.std.c++ so I guess that would qualify.

Another good place is Herb Sutter homepage and blog.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.