Tagged Questions
1
vote
3answers
173 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 ...