gpt4 book ai didi

c++ - 引用指针(int * const和arg)

转载 作者:行者123 更新时间:2023-12-02 10:18:09 25 4
gpt4 key购买 nike

这到底是什么:

int * const & arg

这是
  • 对int指针的引用?
  • 对const int指针的引用?
  • 一个指向int指针的const引用?
  • 对const int指针的const引用?

  • 顺便说一句,const引用对我没有任何意义。我以为您不能在引用声明后更改它们。

    最佳答案

    arg是对 int指针引用,其中该指针本身是恒定的。

    声明arg时,您会注意到(因为它是一个引用)它必须被初始化,因为引用不能引用任何内容。

    一个简单的方法是使用一个示例:

    int x;
    int* const ptr = &x;
    // declare an integer pointer which is constant i.e. the address it stores does not change,
    // and initialize this address to the address of x

    int* const& arg = ptr;
    // declare a reference variable called arg, which references an integer pointer which is constant,
    // the same type that ptr is, and then make it reference our ptr variable

    由于 const 参数在代码行中的“*”之后,因此您要告诉C++指针本身是常量。但是,如果我们要写
    const int* & arg = ...

    要么
    int const* & arg = ...

    我们会告诉C++,指针指向的数据是常量(在这种情况下为整数)。此外,如果我们写了以下内容
    int const* const & arg = ...

    我们会告诉C++,指针存储的地址是常量,并且该地址指向一个也是常量的整数。

    希望这对您有所帮助!

    关于c++ - 引用指针(int * const和arg),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61257493/

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