gpt4 book ai didi

c++ - []方括号在C++的指针类中意味着什么?

转载 作者:行者123 更新时间:2023-11-30 05:24:00 28 4
gpt4 key购买 nike

class Box
{
public:
// Constructor definition
Box(double l = 2.0, double b = 2.0, double h = 2.0)
{
cout << "Constructor called." << endl;
length = l;
breadth = b;
height = h;
}
double Volume()
{
return length * breadth * height;
}
private:
double length; // Length of a box
double breadth; // Breadth of a box
double height; // Height of a box
};

int main(void)
{
Box Box1(3.3, 1.2, 1.5); // Declare box1
Box Box2(8.5, 6.0, 2.0); // Declare box2
Box *ptrBox; // Declare pointer to a class.

// Save the address of first object
ptrBox = &Box1;

ptrBox[0]; // <--- What does it do?

}

最佳答案

ptrBox[0]

相当于:

*ptrBox

指针支持与数组相同的索引运算符。除了关联的存储之外,数组变量只是指向数组第一个元素的指针,因此可以以语义相同的方式对指针和数组进行索引是有意义的。

关于c++ - []方括号在C++的指针类中意味着什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38917769/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com