C ++数据结构声明

时间:2014-01-20 03:24:58

标签: c++ struct

struct movies_t {
  string title;
  int year;
} films [3];

从本教程: http://www.cplusplus.com/doc/tutorial/structures/

如果我理解正确,则电影是由四个类型为movies_t的数据结构组成的声明。这是正确的还是还有别的呢?

...谢谢

1 个答案:

答案 0 :(得分:1)

If I understand correctly films is the declaration of an array of four data structures of the type movies_t. 

不。它的大小为3,索引为012.

films [0]
films [1]
films [2]