I don't get exactly if I am doing the right thing
template<typename ...AllVArgs>
auto dealloc_all(AllVArgs &..._AllVArgs) -> void {
(((std::cout << "\nin dealloc_all function " << &_AllVArgs), ...) << " ");
((delete _AllVArgs), ...);
((_AllVArgs), ...) = nullptr;
}
I allocated 2 struct and try to free them by using the variadic template function
struct a {
int x;
}
a *v1 = new a();
a *v2 = new a();
std::cout << "\nin a function " << &v1<< " " << &v2;
//address output = 0x1dce9ff588 0x1dce9ff580
dealloc_all(v1, v2);
I just wanted to know if I successfully free the allocated memory. btw these are the output it gives me, and I think there's no problem with it?
in a function 0xa4b89ff5c8 0xa4b89ff5c0
in dealloc_all function 0xa4b89ff5c8
in dealloc_all function 0xa4b89ff5c0
Yes: with
you correctly free all the allocated memory
Not completely: with
you set to null pointer only the last argument of your function. If you want to set to null pointer all arguments, you have to rewrite your folding as follows
To verify what I say, I've rewritten your code as follows
so you can see that "deleting a" is written two times between "before delete" and "after delete"; so the destructor (called when you delete an allocated object) is called for every
as...
object.But you can also see something as
printing the values of
v1
andv2
(observe: I print the values of the pointers, not the addresses); if you wantyou have to change
to