R-JANA
2
Q:

static_cast c++

static_cast conversion
 C++ C++ language Expressions 
Converts between types using a combination of implicit and user-defined conversions.

Syntax
static_cast < new_type > ( expression )		
Returns a value of type new_type.
4
struct B { };
struct D : B { };
D d;
B& br = d;
static_cast<D&>(br); // lvalue denoting the original d object
1

New to Communities?

Join the community