有没有办法在调用函数之前检查函数签名?

发布于 2024-12-25 18:21:03 字数 294 浏览 1 评论 0原文

例如,这有效:

if ( typeid( int) == typeid( int) ) //...

如何对函数签名执行相同的操作?

if (typeid (void (*)(void) ) == typeid( void(*)(void) ) //that of course dosn't work

我们如何检查这两个人的签名?

void f(int);
int x(double);

for example this works:

if ( typeid( int) == typeid( int) ) //...

how to do the same with function signatures?

if (typeid (void (*)(void) ) == typeid( void(*)(void) ) //that of course dosn't work

how do we check thos two for signature?

void f(int);
int x(double);

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

明明#如月 2025-01-01 18:21:03

函数的类型在编译时已知。您可以使用 is_same 比较任意类型:

#include <iostream>
#include <type_traits>

int main()
{
    typedef void(*F0)(int);
    typedef void(*F1)(int, int);

    std::cout << std::is_same<F0, F0>::value << std::endl;
    std::cout << std::is_same<F0, F1>::value << std::endl;
}

结果:

1
0

类型特征值是编译时常量,可用于模板实例化和 SFINAE。

The type of a function is known at compile-time. You can compare arbitrary types using is_same:

#include <iostream>
#include <type_traits>

int main()
{
    typedef void(*F0)(int);
    typedef void(*F1)(int, int);

    std::cout << std::is_same<F0, F0>::value << std::endl;
    std::cout << std::is_same<F0, F1>::value << std::endl;
}

Result:

1
0

The type trait value is a compile-time constant and can be used in template instantiation and for SFINAE.

〃安静 2025-01-01 18:21:03

使用 typeid(foo).name() 。

例如: if ( typeid(func1).name() == typeid(func2).name() ) //do stuff

#include <cstdio>
#include <iostream>
#include <typeinfo>
using namespace std ;

void foo()
{    
}

int bar()
{   
    return 1;
}

int main(void)
{
   if (typeid(foo).name() == typeid(bar).name())
       cout<<typeid(foo).name()<<" equals "<<typeid(bar).name()<<" \n";
   else
   if (typeid(foo).name() != typeid(bar).name())
       cout<<typeid(foo).name()<<" is not equal to "<<typeid(bar).name()<<" \n";

   cout << "\nPress ENTER to continue \n\n";   cin.ignore();  // pause screen

   return 0;
}

输出:

void (__cdecl*)(void) is not equal to int (__cdecl*)(void)

Use typeid(foo).name() .

For instance : if ( typeid(func1).name() == typeid(func2).name() ) //do stuff

#include <cstdio>
#include <iostream>
#include <typeinfo>
using namespace std ;

void foo()
{    
}

int bar()
{   
    return 1;
}

int main(void)
{
   if (typeid(foo).name() == typeid(bar).name())
       cout<<typeid(foo).name()<<" equals "<<typeid(bar).name()<<" \n";
   else
   if (typeid(foo).name() != typeid(bar).name())
       cout<<typeid(foo).name()<<" is not equal to "<<typeid(bar).name()<<" \n";

   cout << "\nPress ENTER to continue \n\n";   cin.ignore();  // pause screen

   return 0;
}

output:

void (__cdecl*)(void) is not equal to int (__cdecl*)(void)
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文