tags:

views:

100

answers:

2

Possible Duplicate:
The Definitive C++ Book Guide and List

Can somebody recommend me advance c++ book explaining RAII, autoptrs?

Thank you

+3  A: 

I'm not sure it qualifies as advanced, but Exceptional C++ by Herb Sutter would be an obvious choice (it also covers quite a bit more than just RAII).

Jerry Coffin
+1  A: 

Also by Herb Sutter and Andrei Alexandrescu, C++ Coding Standards has a good explanation of RAII in item 13.

Sam Miller