gpt4 book ai didi

c++ - 使用 decltype 访问静态字段

转载 作者:塔克拉玛干 更新时间:2023-11-03 06:56:31 24 4
gpt4 key购买 nike

<分区>

Possible Duplicate:
C++0x decltype and the scope resolution operator

使用 g++ 4.6.1 编译下一个示例:

#include <iostream>

struct A
{
static const int v = 1;
};

int main()
{
A a;
std::cout << decltype(a)::v << std::endl;
}

将产生下一个编译错误:

error: expected primary-expression before 'decltype'
error: expected ';' before 'decltype'

这符合标准吗?或者,这是 g++ 的怪癖吗?

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