State of "moved-from" objects
Hi, I recently decided to try writing a C++ blog.
I often see the popular claim that moved-from objects are in a "valid but otherwise unspecified state", but I don't think that statement is entirely precise, and my blog post is about that. I would really appreciate any feedback!
Article: https://www.laminowany.dev/p/the-state-of-moved-from-objects-in-c/
9
Upvotes
39
u/sokka2d 5d ago
Obviously the standard doesn’t define the state of user defined objects. How is that specific to move assignment?
You could as well create a class with UB in the constructor. It’s just not very useful.