使用省略号强制转换函数指针

发布于 2024-12-10 16:54:37 字数 516 浏览 0 评论 0原文

考虑以下程序:

#include <iostream>

typedef void (*fptr)(...);

void foo(fptr func) {
    (*func)(12);
}

void bar(int x) {
    std::cout << "bar : " << x << std::endl;
}

int main() {
    foo(fptr(bar));
}

在至少一个上编译、运行并打印 bar : 12编译器:)我在一些我应该维护的遗留代码中发现了这个,我想知道这是否安全/定义?

bar 与类型 fptr 不匹配,因此使其正常工作的唯一方法是使用不安全的强制转换。我想这取决于省略号-魔法内部如何工作,那么它是以某种方式定义的吗?

Consider the following program:

#include <iostream>

typedef void (*fptr)(...);

void foo(fptr func) {
    (*func)(12);
}

void bar(int x) {
    std::cout << "bar : " << x << std::endl;
}

int main() {
    foo(fptr(bar));
}

This compiles, runs and prints bar : 12 on at least one compiler :) I found this in some legacy code I am supposed to maintain, and I wonder if this is safe/defined?

bar does not match the type fptr, so the only way to get this to work is by using an unsafe cast. I guess it depends on how the ellipsis-magic works internally, so is that defined in some way?

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

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

发布评论

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

评论(1

我为君王 2024-12-17 16:54:37

代码所做的是未定义的行为。如果它的工作只是偶然,则不能保证它一定能工作。使用强制转换的函数指针唯一可以安全完成的事情是将其强制转换回其原始类型。

What the code is doing is undefined behavior. If its working is just by chance, there are no guarantees that it should work. The only thing that can be safely done with a casted function pointer is cast it back to its original type.

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