Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Any good C++0x overviews? [closed]

Tags:

c++

c++11

I teach C and C++ and I was just wondering if there are good overview of the C++0x features.

I am going to read the standard, but that will take time and I'm definitely going to make it for this semester (next year hopefully). For this semester I just want to make one extra lecture about C++0x (and maybe make sure that none of the taught features are deprecated/changed in C++0x).

like image 775
Šimon Tóth Avatar asked Aug 13 '10 06:08

Šimon Tóth


People also ask

What is the best Cox-2 inhibitor?

They treat the pain and inflammation of many types of arthritis and other types of short-term pain. COX-2 inhibitors are as effective as traditional NSAIDs but cause less stomach and intestinal problems. Celecoxib (Celebrex®) is the only COX-2 inhibitor available in the U.S.

What is the safest NSAID for cardiovascular events?

Aspirin is the one NSAID that's actually good for the heart. But it can upset the stomach, lead to an ulcer, and cause bleeding in the digestive system. Acetaminophen appears safe for both your heart and gut.

Which is safer Celebrex or diclofenac?

Conclusion: Celecoxib 200 mg daily is as effective as diclofenac 150 mg daily for relieving signs and symptoms of OA of the knee, including pain, and has a rapid onset of action. However, celecoxib appears to have a superior safety and tolerability profile.

What are COX-2 inhibitors examples?

COX-2 Selective (includes Bextra, Celebrex, and Vioxx) and Non-Selective Non-Steroidal Anti-Inflammatory Drugs (NSAIDs)


3 Answers

The best two I know of are the Wikipedia page and Stroustrup's FAQ.

I really wouldn't recommend reading the standard until you know what you're looking for. Besides being significantly larger than the C++03 standard, the organization and clarity has gotten somewhat worse in parts.

If you're only going to do one lecture on "advanced C++", you might focus on C++0x features which were adopted from other common sources, such as boost::smart_ptr and std::tr1::unordered_map. Such things are ahead of the curve on adoption.

like image 148
Potatoswatter Avatar answered Sep 30 '22 07:09

Potatoswatter


Herb Sutter has written many articles on the changes which you might find useful.

like image 28
Matt Curtis Avatar answered Sep 30 '22 09:09

Matt Curtis


Wikipedia has a long overview. I would hightlight rvalue references and lambdas.

like image 25
zvrba Avatar answered Sep 30 '22 09:09

zvrba