Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in raii

Any RAII template in boost or C++0x

c++ templates boost c++11 raii

When has RAII an advantage over GC?

c++ raii

How can I create a smart pointer that locks and unlocks a mutex?

Best practices + syntax for implementing a "contextmanager" in C++

c++ c++11 raii contextmanager

What happens when we combine RAII and GOTO?

c++ goto raii

RAII wrapper for OpenGL objects

Why the Destructor in C++ de-allocated memory in reverse order of how they were initialised?

Javascript release resources automatically (like RAII)

javascript raii

How is destructor called for temporary objects returned from a function in C++?

c++ raii

A Question On Smart Pointers and Their Inevitable Indeterminism

Why can't Alexandrescu use std::uncaught_exception() to implement SCOPE_FAIL in ScopeGuard11? [duplicate]

c++ c++11 raii loki scopeguard

CUDA: Wrapping device memory allocation in C++

c++ cuda raii placement-new

What wrapper class in C++ should I use for automated resource management?

RAII in Java... is resource disposal always so ugly?

Is there a C++ standard class to set a variable to a value at scope exit

Any risk in a AutoCloseable wrapper for java.util.concurrent.locks.Lock?

How does RAII work when a constructor throws an exception?

c++ exception constructor raii

Can you use a shared_ptr for RAII of C-style arrays?

c++ raii shared-ptr

Move constructor and const member variables

c++11 raii move-constructor

Why do C++ standard file streams not follow RAII conventions more closely?