所以,我搞砸了指针,我对某些事情感到困惑。首先,让我从一个基本示例开始,其行为类似于预期:
void* h = new char[16] {}; //pointer to a array of char, 16 bytes, and initilizes with 0
int* o = (int*)h; //gets the adress of the first byte
*o = 16; //sets the value
std::cout << *(int*)h << std::endl; //Prints the memory value
std::cout << *o; //Prints the memory value
并打印以下内容:
16
16
但是这个没有输出我认为的结果:
int* o = (int*)h+1; //gets the adress of the second byte
*o = 16; //sets the value
std::cout << *(int*)h+1 << std::endl; //Prints the memory value
std::cout << *o; //Prints the memory value
但是它输出:
1
16
两个数字不是16吗? 据我所知,通过向指针添加值,它以字节为单位增加了内存。所以,我这里缺少什么吗?
答案 0 :(得分:2)
您对运算符的优先级有疑问。在所有运算符中,使用的优先级最高的是强制转换为(int*)
的优先级。因此,当您执行(int*)h+1
时,您实际上是在进行((int*)h)+1
,这不是指向第二个字节的指针,而是指向第二个 integer 的指针,也就是说您在前进sizeof(int)
个字节。
与*(int*)h+1
类似,您实际上在做(*(int*)h)+1
,也就是说,您正在读取第一个整数(即0
)并将1加到该整数(0 + 1 = 1
)。在这种情况下,您不执行指针算术。
如果要进行适当的指针算术运算,则需要一些括号,但是请注意,您不能随便用void *
进行指针算术运算:请改用char *