声明 const 指针为 int 吗?

发布于 2024-12-21 08:04:31 字数 524 浏览 1 评论 0原文

在 C++ 中,我们有以下内容:

int* p1;              // pointer to int
const int* p2;        // pointer to constant int
int* const p3;        // constant pointer to int
const int* const p4;  // constant pointer to constant int

在 D 中:

int* p1;              // pointer to int
const(int)* p2;       // pointer to constant int
?? ?? ??              // constant pointer to int
const(int*) p4;       // constant pointer to constant int

指向 int 的常量指针的语法是什么?

In C++ we have the following:

int* p1;              // pointer to int
const int* p2;        // pointer to constant int
int* const p3;        // constant pointer to int
const int* const p4;  // constant pointer to constant int

and in D:

int* p1;              // pointer to int
const(int)* p2;       // pointer to constant int
?? ?? ??              // constant pointer to int
const(int*) p4;       // constant pointer to constant int

what's the syntax for constant pointer to int?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

郁金香雨 2024-12-28 08:04:31

我想你可以模拟一下:

struct Ptr(T)
{
    T* _val;

    this(T* nval) const
    {
        _val = nval;
    }

    @property T* opCall() const
    {
        return cast(T*)_val;
    }

    alias opCall this;
}

void main()
{
    int x = 1;
    int y = 2;
    const Ptr!int ptrInt = &x;
    assert(*ptrInt == 1);

    *ptrInt = y;  // ok
    assert(*ptrInt == 2);
    assert(x == 2);

    ptrInt = &y;  // won't compile, good.
}

I think you can simulate it:

struct Ptr(T)
{
    T* _val;

    this(T* nval) const
    {
        _val = nval;
    }

    @property T* opCall() const
    {
        return cast(T*)_val;
    }

    alias opCall this;
}

void main()
{
    int x = 1;
    int y = 2;
    const Ptr!int ptrInt = &x;
    assert(*ptrInt == 1);

    *ptrInt = y;  // ok
    assert(*ptrInt == 2);
    assert(x == 2);

    ptrInt = &y;  // won't compile, good.
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文