gpt4 book ai didi

c++ - 成员变量与函数概念检查

转载 作者:行者123 更新时间:2023-12-01 13:09:10 25 4
gpt4 key购买 nike

我沉迷于一些早期的星期天 C++20 恶作剧,在玩 gcc/clang 主干概念时,我偶然发现了一个我没有看到优雅解决方案的问题。考虑这个代码:

template <typename T>
concept floating_point = std::is_floating_point_v<std::decay_t<T>>;

template <typename T>
concept indexable = requires(T v)
{
{v[0]} -> floating_point;
{v[1]} -> floating_point;
{v[2]} -> floating_point;
};

template <typename T>
concept func_indexable = requires(T v)
{
{v.x()} -> floating_point;
{v.y()} -> floating_point;
{v.z()} -> floating_point;
};

template <typename T>
concept name_indexable = requires(T v)
{
{v.x} -> floating_point;
{v.y} -> floating_point;
{v.z} -> floating_point;
};

template <typename T>
concept only_name_indexable = name_indexable<T> && !indexable<T>;

template <typename T>
concept only_func_indexable = func_indexable<T> && !indexable<T> && !name_indexable<T>;

void test_indexable(indexable auto v) {
std::cout << v[0] << " " << v[1] << " " << v[2] << "\n";
}

void test_name_indexable(only_name_indexable auto v) {
std::cout << v.x << " " << v.y << " " << v.z << "\n";
}

void test_func_indexable(only_func_indexable auto v) {
std::cout << v.x() << " " << v.y() << " " << v.z() << "\n";
}

(obligatory godbolt for toying with this) https://godbolt.org/z/gyCAQn

现在考虑一个满足 only_func_indexable 的结构/类: 拥有成员函数 x() , y()z()立即导致 name_indexable 的概念检查中出现编译错误.更确切地说:
<source>: In instantiation of 'void test_func_indexable(auto:3) [with auto:3 = func_point]':

<source>:125:26: required from here

<source>:29:6: error: 'decltype' cannot resolve address of overloaded function

29 | {v.x} -> floating_point;

这很明显,因为 .x指成员函数的名称,它是 decltype 中的非法表达式。 .另请注意,更改 name_indexable的定义为
template <typename T>
concept name_indexable = !func_indexable<T> && requires(T v)
{
{v.x} -> floating_point;
{v.y} -> floating_point;
{v.z} -> floating_point;
};

通过懒惰的 union 评估解决了这个问题。

在这一点上,我的结论是:“每当我想检查成员变量是否存在时,我 都会让 首先提供并检查一个概念是否存在类似命名的成员函数”。

现在这感觉相当尴尬,就像 ISO 组中的优秀人员想到了一个更优雅的解决方案一样。

在这种情况下,该解决方案是什么?

最好的事物,
理查德

最佳答案

我不确定你的问题是否真的有问题。希望您永远不会拥有同时具有数据成员 x 的类型。和一个成员函数 x ,所以您的 func_indexable已经是 only_func_indexable ,有了这个概念,就没有问题了。

但是如果你想在那里非常精确,你可以做这样的事情

requires std::is_member_object_pointer_v<decltype(&T::x)> && floating_point<std::invoke_result_t<decltype(&T::x), T>>;

当然,这应该打包成一些概念,而不是每次都写。请注意 std::invoke_result_t<decltype(&T::x), T>给出(一些引用) float对于两者 float x;float x(); .

关于c++ - 成员变量与函数概念检查,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60026993/

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