gpt4 book ai didi

c++ - __PRETTY_FUNCTION__ : Can a return type contain parentheses?

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

我正在考虑 this solution减少 __PRETTY_FUNCTION__ 的输出。该解决方案删除了​​返回类型、参数和修饰符。

我想知道以下修改是否适用于任何情况:

inline std::string methodName(const std::string& prettyFunction) {
size_t parenthesis = prettyFunction.find("("); //Then I can use parenthesis index as end for my string
size_t begin = prettyFunction.rfind(" ",parenthesis) + 1;
(...)
}

也就是说,我想了解返回类型(或其他任何东西,在 __PRETTY_FUNCTION__ 返回的字符串中,在函数名称的左侧)是否有可能包含一个左括号 (


我实现了a different way中的方法.

最佳答案

是的,可以有其他括号。这是一个例子:

#include <iostream>

using fptr = void(*)();

fptr func() {
std::cout << __PRETTY_FUNCTION__ << '\n';
return nullptr;
}

int main()
{
func();
}

使用 g++ -std=c++14 的输出是:

void (* func())()

关于c++ - __PRETTY_FUNCTION__ : Can a return type contain parentheses?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29777059/

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