what is the raw memory?

Hello.

I'm studying about allocator<T> class and I saw the word "raw memory".

What is the meaning of raw memory exactly?

It's just memory block of bytes and doesn't have specific type?

OR It's allocated in memory but it's not initialized yet. It is a raw memory?



Last edited on
> It's allocated in memory but it's not initialized yet.

Yes; it is an uninitialised area of storage (memory).
Last edited on
// JLBorges
Thank you.
Topic archived. No new replies allowed.