我有以下 C 代码,而我对 Java 知之甚少。
我想知道是否有任何方法可以在 Java 中创建下面代码中显示的结构。我想我们可以class
在 Java 中使用它,但我在 Java 类中面临的问题是我无法声明 people[10] 即这种结构的数组。
struct people{
float height;
float weight;
int age;
}people[10];
int main() // this part of code is just to show how I can access all those elements of struct
{
int i;
for(i=0;i<10;i++)
{
people[i].height = rand()%7;
people[i].weight = rand()%80;
people[i].age = rand()%100;
}
for(i=0;i<10;i++)
{
printf(" %f %f %d\n",people[i].height,people[i].weight,people[i].age);
}
return 0;
}