I came across some code containing the following:
struct ABC {
unsigned long array[MAX];
} abc;
When does it make sense to use a declaration like this?
|
I came across some code containing the following:
When does it make sense to use a declaration like this? |
||||
|
|
|
It allows you to pass the array to a function by value, or get it returned by value from a function. Structs can be passed by value, unlike arrays which decay to a pointer in these contexts. |
|||||
|
|
Another advantage is that it abstracts away the size so you don't have to use
but then you have a much bigger problem: you have to be aware that One more advantage is that the struct allows you to later add more elements if you need to, without having to rewrite lots of code. |
|||||||||||
|
|
You can copy a struct and return a struct from a function. You cannot do that with an array - unless it is part of a struct! |
|||
|
|
|
You can copy it like this.
For an array you would need to use memcpy function or a loop to assign each element. |
|||||||||||||
|
|
You can use struct to make a new type of data like string. you can define :
or you can create a List of data that you can use it by argument of functions or return it in your methods. The struct is more flexible than an array, because it can support some operators like = and you can define some methods in it. Hope it is useful for you :) |
|||||||||||||||||||
|