宏和模板中的可变参数函数

variadic functions in macro and templates

我尝试创建一个调用使用模板的可变参数函数的宏。 我使用以下代码,但链接器无法解析对宏的调用...

此代码是记录器的一部分class:

template< typename ... Args >
void Logger::logTrace(Args const& ... args)
{
    std::ostringstream stream;
    using List = int[];
    (void)List{ 0, ((void)(stream << args), 0) ... };
    BOOST_LOG_SEV(log_, trace) << stream.str();
}

记录器class:

class Logger {

public:
    static Logger* getInstance(const char *logFile = "LogClient.log");

    template< typename ... Args >
    void logTrace(Args const& ... args);

private:
    Logger(std::string fileName);   
    virtual ~Logger();

    void initialize(std::string fileName);

    static Logger* logger_; // singleton instance
};

和宏:

#define LOG_TRACE(...) Logger::getInstance()->logTrace(__VA_ARGS__);

调用宏:

LOG_TRACE("A log with a number: %d", 5);

感谢您的帮助!

编辑并解决:

问题与可变函数甚至宏无关,而是与链接有关。 在 class 定义中实施 logTrace 可解决问题。

代码工作:

`记录器 class:

class Logger {

public:
    static Logger* getInstance(const char *logFile = "LogClient.log");

    template< typename ... Args >
    void logTrace(Args const& ... args)
    {
        std::ostringstream stream;
        using List = int[];
        (void)List{ 0, ((void)(stream << args), 0) ... };
        BOOST_LOG_SEV(log_, trace) << stream.str();
    }

private:
    Logger(std::string fileName);   
    virtual ~Logger();

    void initialize(std::string fileName);

    static Logger* logger_; // singleton instance
};

和宏:

#define LOG_TRACE(...) Logger::getInstance()->logTrace(__VA_ARGS__);

调用宏:

LOG_TRACE("A log with a number: %d", 5);

您可能在声明了 Logger::logTrace() 但未声明 [​​=18=] 的源文件中调用了您的宏(以及 logTrace 模板函数)(例如:在包含 Logger.h).您的宏需要 logTrace 模板函数的完整定义。

建议你在Logger中定义logTrace成员函数class:

class Logger {

public:
    static Logger* getInstance(const char *logFile = "LogClient.log");

    template< typename ... Args >
    void logTrace(Args const& ... args)
    { /* add implementation here */ }
    ...