Is there a way to get type of object being allocated in operator new?
What I mean is:
void* BaseClass::operator new(size_t size)
{
void* result = ::operator new(size);
//Get type of object that's being allocated
return result;
}
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
There is no mechanism to get this data.
operator newjust allocates raw memory given a size, and only thenewoperator call knows the type to construct the object into the allocated memory.