gpt4 book ai didi

c++ - '**' 在 C 中是什么意思?

转载 作者:IT老高 更新时间:2023-10-28 12:44:03 28 4
gpt4 key购买 nike

一个对象开头有两个星号是什么意思?

**variable

最佳答案

在声明中,它意味着它是一个指向指针的指针:

int **x;  // declare x as a pointer to a pointer to an int

使用它时,它会尊重它两次:

int x = 1;
int *y = &x; // declare y as a pointer to x
int **z = &y; // declare z as a pointer to y
**z = 2; // sets the thing pointed to (the thing pointed to by z) to 2
// i.e., sets x to 2

关于c++ - '**' 在 C 中是什么意思?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2893129/

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