gpt4 book ai didi

c++ - 是否可以用 C++17 中的 std::any 比较两个任意函数?

转载 作者:行者123 更新时间:2023-11-28 05:11:36 31 4
gpt4 key购买 nike

我认为这是 C++ 如何处理函数指针和 std::function 的一个很大限制,目前不可能以优雅的方式比较两个不同类型的任意函数。

我现在想知道 C++17 是否会通过引入 std::any

来改变这一点
void foo(int a) {}
int bar(float b) {}

void main()
{
std::any oneFoo = std::make_any(foo);
std::any oneBar = std::make_any(bar);
std::any anotherFoo = std::make_any(foo);

bool shouldBeFalse = (oneBar == oneFoo);
bool shouldBeTrue = (oneFoo == anotherFoo);
}

这会像我预期的那样表现吗?

最佳答案

比较函数指针很容易。您甚至不需要使用 C++17,但它有助于缩短代码:

#include <iostream>

void foo(int a) {}
int bar(float b) { return 0; }

template <class A, class B> bool pointer_equals(A *a, B *b) {
if
constexpr(std::is_same<A, B>::value) { return a == b; }
else {
return false;
}
}

int main(int, char *[]) {
std::cout << "Should be false: " << pointer_equals(foo, bar) << "\n"
<< "Should be true: " << pointer_equals(foo, foo) << "\n";
return 0;
}

问题是:函数 只是一种可调用,在C++ 中有很多不同的可能的可调用。从功能的角度来看,指针相等性有点弱。

关于c++ - 是否可以用 C++17 中的 std::any 比较两个任意函数?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43390127/

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