Possible Duplicate:
What does a colon following a C++ constructor name do?
I'm reading a book about CUDA & I'm having trouble reading this C++ syntax. I'm not sure what to search for so that's why I'm posting here.
struct cuComplex {
float r;
float i;
cuComplex( float a, float b ) : r(a) , i(b) {}
}
What does the cuComplex
statement do? Specifically:
cuComplex( float a, float b ) : r(a) , i(b) {}
what is this called so I can learn about it?
: r(a) , i(b)
in cuComplex ctor construct memory at allocation with value between parentheses.