In the past year or so, I've seen casting like:

CObj* x = static_cast<CObj*> (y);




Is there any advantages of using static_cast instead of the good old casting like:

CObj* x = (CObj*)y





-= hm... =-
Grace