2

我正在制作自己的 String View 类以用于学习目的,并且正在尝试使其成为 100% constexpr。

为了测试它,我有一个返回哈希值的成员函数。然后,我在 switch 语句中构造我的字符串视图并调用相同的成员函数,如果它通过,则该成员函数已完成其目的。

为了学习,我正在使用/阅读/比较我的实现与 Visual Studio 2017 最新更新std::string_view,但是,我注意到,尽管swap被标记为constexpr,但它不起作用,在 Visual Studio 中也不在 g++ 中。

这是一段不起作用的代码:

constexpr Ali::String::View hello("hello");
constexpr Ali::String::View world("world");
// My implementation fails here!
hello.swap(world);
cout << hello << " " << world << endl;    

// Visual Studio implementation fails here!
// std::string_view with char const * is not constexpr because of the length
constexpr std::string_view hello("hello");
constexpr std::string_view world("world");
hello.swap(world);
cout << hello << " " << world << endl;

这是 if 的 Visual Studio 实现:

constexpr void swap(basic_string_view& _Other) _NOEXCEPT
        {   // swap contents
        const basic_string_view _Tmp{_Other};   // note: std::swap is not constexpr
        _Other = *this;
        *this = _Tmp;
        }

这个来自我的班级,它与 Visual Studio 中的类似。

constexpr void swap(View & input) noexcept {
    View const data(input);
    input = *this;
    *this = data;
}

所有构造函数和赋值都标记为 constexpr。

Visual Studio 和 g++ 都给我类似的错误。

// Visual Studio
error C2662: 'void Ali::String::View::swap(Ali::String::View &) noexcept': cannot convert 'this' pointer from 'const Ali::String::View' to 'Ali::String::View &'

// g++
error: passing 'const Ali::String::View' as 'this' argument discards qualifiers [-fpermissive]

如果交换不适用于 constexpr,为什么还要使用 constexpr?

4

1 回答 1

0

swap被标记constexpr为允许在constexpr函数中调用,例如:

constexpr int foo()
{
    int a = 42;
    int b = 51;

    swap(a, b); // Here swap should be constexpr, else you have error similar to:
                // error: call to non-constexpr function 'void swap(T&, T&) [with T = int]'
    return b;
}

演示

于 2017-09-22T21:49:14.697 回答