gpt4 book ai didi

c++ - 是否有 GCC __PRETTY_FUNCTION__ 等同于它所提供的文字参数?

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

如果我的函数是:

void foo(bool bar)
{
qDebug() << __PRETTY_FUNCTION__;
}

foo(getBool()); 将输出 "void foo(bool bar)"

我想要更多的 strace 结果,这样:

foo(getBool()); 将输出 "getBool()"

解决这个问题的最佳方法是什么?

要求是 foo(boolbar) 将被放入动态库中,如下所示:

#include "Custom Library/output_tools.h"

进入项目。

最佳答案

为什么不为此使用宏?

#define printBoolFunctionAndResult(bar) qDebug() << #bar << " " << bar;

这使用 stringize 运算符将宏参数转换为字符串,并首先直接打印参数,然后对其求值。

这是一个使用 std::cout 的工作示例:https://repl.it/repls/IntelligentGrayGermanpinscher

关于c++ - 是否有 GCC __PRETTY_FUNCTION__ 等同于它所提供的文字参数?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48686014/

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