data structures - Does Java support structs? -


does java have analog of c++ struct:

struct member {   string firstname;    string lastname;     int birthyear;  }; 

i need use own data type.

java definitively has no structs :) describe here looks javabean kind of class.


Comments

Popular posts from this blog

c# - How to set Z index when using WPF DrawingContext? -

razor - Is this a bug in WebMatrix PageData? -

visual c++ - Using relative values in array sorting ( asm ) -