我是第一名 发表于 2022-1-26 00:30:26

constexpr函数

#include <iostream>
#include <string>
using namespace std;

constexpr bool isShorter(const string &s1, const string &s2)
{
        return s1.size() < s2.size();
}


int main()
{
        cout << isShorter("hello", "worldaa") << endl;
        return 0;
}

为什么不行?{:10_266:}

lhgzbxhz 发表于 2022-1-26 10:51:57

std::string的constexpr化在c++20入标准,你看看编译器是不是用的c++20标准

傻眼貓咪 发表于 2022-1-26 13:23:51

试试:#include <iostream>
#include <string>

// using std::cout, std::endl;
using namespace std;

size_t S(string str){return str.size();}

constexpr bool isShorter(size_t a, size_t b)
{
      return a < b;
}


int main()
{
        cout << boolalpha << isShorter(S("hello"), S("worldaa")) << endl;
        return 0;
}
以上代码为 C++11 或以上都能正常运行

傻眼貓咪 发表于 2022-1-26 13:32:29

或:#include <iostream>
#include <string>
using namespace std;

constexpr bool isShorter(const string_view &s1, const string_view &s2)
{
        return s1.size() < s2.size();
}

int main()
{
        cout << boolalpha << isShorter("hello", "worldaa") << endl;
        return 0;
}

我是第一名 发表于 2022-1-26 22:25:25

傻眼貓咪 发表于 2022-1-26 13:32
或:

可以是可以,不过不支持c++11,而我想知道为什么C++11不支持这样写{:9_241:}

我是第一名 发表于 2022-1-26 22:27:58

lhgzbxhz 发表于 2022-1-26 10:51
std::string的constexpr化在c++20入标准,你看看编译器是不是用的c++20标准

为什么c++11不可以呢,定义不是说实参是常量表达式时,它的返回值也是常量表达式吗。。?

傻眼貓咪 发表于 2022-1-26 23:01:16

我是第一名 发表于 2022-1-26 22:27
为什么c++11不可以呢,定义不是说实参是常量表达式时,它的返回值也是常量表达式吗。。?

因为 C++11 开始才有 constexpr

lhgzbxhz 发表于 2022-1-27 14:33:50

我是第一名 发表于 2022-1-26 22:27
为什么c++11不可以呢,定义不是说实参是常量表达式时,它的返回值也是常量表达式吗。。?

std::string不是基本类型,是类类型,要求构造函数中有constexpr声明才可以被声明为constexpr变量
而c++20才规定std::string必须要有一个constexpr构造函数

lhgzbxhz 发表于 2022-1-27 14:38:10

如果要在c++11前实现类似功能只能使用const char*,并且还不能用<cstring>里的库,得自己手写

我是第一名 发表于 2022-1-27 22:56:02

lhgzbxhz 发表于 2022-1-27 14:33
std::string不是基本类型,是类类型,要求构造函数中有constexpr声明才可以被声明为constexpr变量
而c++ ...

好的哥
页: [1]
查看完整版本: constexpr函数