Code Bye

关于constexpr的问题

#include <iostream>
constexpr const char _P[]="welcome.";
template <char const* _Set_Char>
class _Out_Put
{
private:
    const char* _K;
public:
    _Out_Put()
    {
        _K=_Set_Char;
    }
    void _Print_str()
    {
        std::cout<<_K<<std::endl;
    }
};
int main(int agrc,char** agrv)
{
    _Out_Put<_P>()._Print_str();
    return 0;
}

这段代码用G++编译的时候出现了这个 
gcc版本是5.3.0的  g++不是支持C++11的语法么。

解决方案

20

提示说的很清楚了,加上-std=c++11

10

#include <limits>
没有 .h 。

CodeBye 版权所有丨如未注明 , 均为原创丨本网站采用BY-NC-SA协议进行授权 , 转载请注明关于constexpr的问题