SBRM/RAII for std::va_list/va_start()/va_end use

前端 未结 2 674
佛祖请我去吃肉
佛祖请我去吃肉 2021-02-15 15:42

My code contains snippets like these:

    std::va_list ap;
    va_start(ap, msgfmt);
    snprintf_buf buf;
    const tchar * msg = buf.print_va_list(msgfmt, ap);         


        
2条回答
  •  清酒与你
    2021-02-15 16:09

    One of possible implementations assumes std::va_list = char* and va_end() is just setting that pointer to null. Of cause, it can be called outside of function. But I'm not sure, that it will works similar on other platforms.

    Better to wrap this functions with a class.

提交回复
热议问题