我正在尝试创建一个日志函数,该日志函数将采用日志类型msg,并将添加文件名,函数名以及调用该日志函数的行。我创建了以下测试代码,但收到了我不理解的错误
#include<stdio.h>
#define func(type, msg, ...) func(type, __FILE__, __func__, __LINE__, msg, __VA_ARGS__)
void func(int type, const char *file, const char *function, int line, const
char *msg, ...)
{
printf("%s",msg);
}
main()
{
func(10,"time");
}
这是错误日志:
||=== Build file: "no target" in "no project" (compiler: unknown) ===|
E:\code\C code\A.c|6|error: expected declaration specifiers or '...' before string constant|
E:\code\C code\A.c|3|error: expected declaration specifiers or '...' before '__func__'|
E:\code\C code\A.c|6|note: in expansion of macro 'func'|
E:\code\C code\A.c|6|error: expected declaration specifiers or '...' before numeric constant|
E:\code\C code\A.c|6|warning: type defaults to 'int' in declaration of 'msg' [-Wimplicit-int]|
E:\code\C code\A.c|3|note: in definition of macro 'func'|
E:\code\C code\A.c|12|warning: return type defaults to 'int' [-Wimplicit-int]|
E:\code\C code\A.c||In function 'main':|
E:\code\C code\A.c|3|warning: implicit declaration of function 'func' [-Wimplicit-function-
declaration]|
E:\code\C code\A.c|15|note: in expansion of macro 'func'|
E:\code\C code\A.c|3|error: expected expression before ')' token|
E:\code\C code\A.c|15|note: in expansion of macro 'func'|
||=== Build failed: 4 error(s), 3 warning(s) (0 minute(s), 0 second(s)) ===|
我已经阅读了question,但是无法将解决方案与我的代码联系起来。
答案 0 :(得分:1)
您的代码可能合理地是:
#include <stdio.h>
#include <stdarg.h>
#include <time.h>
extern void (logger)(int type, const char *file, const char *function, int line, const char *fmt, ...);
#define logger(type, msg, ...) logger(type, __FILE__, __func__, __LINE__, msg, __VA_ARGS__)
void (logger)(int type, const char *file, const char *function, int line, const char *fmt, ...)
{
va_list args;
va_start(args, fmt);
printf("%s:%d:%s() - %d: ", file, line, function, type);
vprintf(fmt, args);
va_end(args);
}
int main(void)
{
logger(10, "time %ld\n", (long)time(0));
}
需要额外的参数,以便__VA_ARGS__
可以引用。有关广泛的讨论,请参见#define
macro for debug printing in C。最简单的可移植修补程序可能是更改宏,以将格式字符串包含为__VA_ARGS__
的一部分。
#define logger(type, ...) logger(type, __FILE__, __func__, __LINE__, __VA_ARGS__)
有了此更改,您可以再次使用它:
int main(void)
{
logger(10, "time\n");
}
最好将人们将使用的宏名(logger
与函数名分开(例如logger_loc
,其中loc
表示“位置”信息)。但是,如果某个认知用户希望直接调用该函数,则可以编写(logger)(10, "elephants.c", "pachyderm", 31921, "time\n");
。由于logger
后没有紧跟(
标记,因此它不是对函数式宏logger
的调用。
对于“缺失__VA_ARGS__
”问题,还有一个针对GCC的变通办法,C ++ 20也在此问题上进行了工作,并提出了不同的解决方案(请参见Portably detect __VA_OPT__
support?),我预期可能会出现在未来的C标准中(以及在该假想的未来C标准之前的C编译器中)。