Tagged Questions
12
votes
6answers
418 views
Is this[0] safe in C++?
This earlier question asks what this[0] means in C#. In C++, this[0] means "the zeroth element of the array pointed at by this."
Is it guaranteed to not cause undefined behavior in C++ to refer to ...
1
vote
3answers
171 views
Setting an instance of an object to another one from inside, using this = new Foo()?
I am working with a hash table and to rehash it, I am simply putting all the values into a new hash table, and then setting the executing instance to this new hash table.
I wasn't sure going into it ...