What is the use of defining a anonymous structure within a structure? When should this concept be used?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
I sometimes use it to create a union between some data:
This way I can easily loop over the coordinates with |
|||
|
|
It's perfectly fine if you just want to express that two values belong together, but never need the particular grouping as a stand-alone type. It might be seen as a bit pedandic and leaning towards the over-engineering side of things, but it can also be seen as a big way to add clarity and structure. Consider:
versus
The last case is a bit harder to indent clearly, but it does express in a very clear way that some of the values are associated with the player, and some with the level. |
|||
|
|
