gpt4 book ai didi

c++ - lowest() 不是 std::numeric_limits 的成员

转载 作者:搜寻专家 更新时间:2023-10-31 01:00:39 24 4
gpt4 key购买 nike

我正在尝试编译以下代码:

#include <iostream>
#include <limits>

int main()
{
std::cout << std::numeric_limits<int>::lowest() << std::endl;
}

我收到以下错误:

../main.cpp:5: error: 'lowest' is not a member of 'std::numeric_limits<int>'
cout << std::numeric_limits<int>::lowest() << std::endl;
^

我在 Ubuntu 15.04 上使用 QT Creator 3.1.1,编译器默认设置为 GCC (/usr/bin/g++)。

有人知道可能是什么问题吗?

最佳答案

lowest函数是在 C++11 标准中引入的,因此您需要使用 -std=c++11 标志启用 C++11 兼容性(默认情况下未启用)。

关于c++ - lowest() 不是 std::numeric_limits 的成员,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30663869/

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