官术网_书友最值得收藏!

Arrays of Objects

An array of objects is not really so much different from an array of values. However, one issue to consider is that there is no way to call the constructor of each object individually. Therefore, the class must have a default constructor or no constructor at all. Remember that if a class has one or more constructors, one of them must be called every time an object of the class is created.

// The default constructor is called for each car object.
Car carArray[3];
carArray[2].IncreaseSpeed(100);
// The default constructor is called for each car object.
Car *pDynamicArray = new Car[5];
pDynamicArray[4].IncreaseSpeed(100);
delete [] pDynamicArray;

Just as for values, we can also initialize an object array with a list. In that case,we can call constructors other than the default constructor. Note that when we introduce a new object in an array initialization list and call the default constructor, we have to add parentheses unlike when creating freestanding objects by calling the default constructor.

Car carArray[] = {Car(), Car(100, 90)};
carArray[0].TurnLeft(90);
主站蜘蛛池模板: 思茅市| 河源市| 嘉鱼县| 临西县| 孙吴县| 龙口市| 永福县| 大新县| 宁明县| 长岛县| 油尖旺区| 得荣县| 资中县| 郧西县| 军事| 施秉县| 方城县| 成武县| 鄂伦春自治旗| 原阳县| 闵行区| 富蕴县| 平武县| 万荣县| 林州市| 贡山| 安溪县| 石泉县| 东海县| 乐陵市| 昭觉县| 兴海县| 长寿区| 台东市| 邹城市| 石泉县| 达孜县| 甘谷县| 永济市| 共和县| 阳山县|