gpt4 book ai didi

c++ - 在可变参数模板中扩展变量名称

转载 作者:行者123 更新时间:2023-11-30 03:20:14 25 4
gpt4 key购买 nike

我不确定如何访问可变参数模板中的变量名称。

#define DebugVars(...) DEBUG_VARS(__FILE__, __LINE__, __FUNCTION__, ## __VA_ARGS__)
#define GetVarName(Variable) (#Variable)

void Log(const char* file, const int line, const char* func, const std::string& message)
{
printf("file:%s, line:%d, func:%s \n%s", file, line, func, message.c_str());
}

template <typename... Args>
void DEBUG_VARS(const char* file, const int line, const char* func, Args&&... args)
{
std::ostringstream ss;
using expander = int[];
(void) expander { 0, (void(ss << GetVarName(args) << ": " << args << "\n"), 0) ...};
Log(file, line, func, ss.str());
}

void main()
{
int number = 37;
float pie = 3.14;
std::string str = "test string";

DebugVars(number, pie, str);
}

输出

file:main.cpp, line:29, func:main 
args: 37
args: 3.14
args: test string

预期输出

file:main.cpp, line:29, func:main 
number: 37
pir: 3.14
str: test string

Example

DebugVars(...) 很容易放入某处的函数中进行调试,但我需要变量名才能发挥作用。

最佳答案

最重要的是,您无法在 DEBUG_VARS 中获取变量名称,因为名称只是标识符,在您的 DEBUG_VARS 函数中不存在。但是,如果您将宏更改为还传递 __VA_ARGS__ 的字符串化版本以及参数本身,则可以将它们标记化并在折叠表达式中使用另一个字符串流,以将它们打印出来...

#include <iostream>
#include <sstream>

#define DebugVars(...) DEBUG_VARS(__FILE__, __LINE__, __FUNCTION__, #__VA_ARGS__,__VA_ARGS__)

void Log(const char* file, const int line, const char* func, const std::string& message)
{
printf("file:%s, line:%d, func:%s, message:%s \n", file, line, func, message.c_str());
}

template < typename... Args>
void DEBUG_VARS(const char* file, const int line, const char* func, const std::string& names, Args&&... args)
{

std::stringstream names_ss;
for (const char& c : names )
{
if (c == ','){
names_ss << " ";
continue;
}
names_ss << c;
}

std::string name;
std::ostringstream ss;
ss << "\n";
using expander = int[];
(void) expander { 0, (
names_ss >> name, ss << name << ": " << args << "\n"
,0) ...};
Log(file, line, func, ss.str());

}

int main()
{
int number = 37;
float pie = 3.14;
std::string str = "test string";

DebugVars(number, pie, str);
return 0;
}

Demo

显然这只适用于命名参数。并且没有具有其他参数的嵌套函数调用,否则将需要对字符串进行进一步处理。

关于c++ - 在可变参数模板中扩展变量名称,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53000438/

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