I have a struct, player, which is as follows:
struct player {
string name;
int rating;
};
I'd like to modify it such that I declare the struct with two arguments:
player(string, int)
it assigns the struct's contents with those values.
|
I have a struct, player, which is as follows:
I'd like to modify it such that I declare the struct with two arguments:
it assigns the struct's contents with those values. |
||||
|
|
|
Although (as has been pointed out), you can simply add a constructor:
Is there some reason you don't want to make it a class?
|
|||||||||||||||
|
|
you would use the constructor, like so:
|
|||
|
Aside from giving your type a constructor, because as-shown it is an aggregate type, you can simply use aggregate initialization:
|
|||
|
|
|
You are allowed to declare a constructor for your
In C++ one of the few differences between classes and structs is that class members default to private, while struct members default to public. |
|||||||||||||||||||
|