最佳答案
Does Java have an analog of a C++ struct
:
struct Member {
string FirstName;
string LastName;
int BirthYear;
};
I need to use my own data type.