variadic template(二)

2022/1/28 23:07:37

本文主要是介绍variadic template(二),对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

重写 print 函数

 

#include<iostream>
using namespace std;

void printfX(const char *s)
{
  while (*s)
  {
    if (*s == '%' && *(++s) != '%')
      throw "invalid format string: missing arguments";
    std::cout << *s++;
  }
}

template<typename T, typename... Args>
void printfX(const char* s, T value, Args... args)
{
  while (*s)
  {
    if (*s == '%' && *(++s) != '%')
    {
      std::cout << value;
      printfX(s, args...); // call even when *s == 0 to detect extra arguments
      return;
    }
    std::cout << *s++;
  }
  throw "extra arguments provided to printf";
}

int main() {
    int* pi = new int;
    printfX("%d %s %p %f\n",15,"This is Ace",pi,3.1415926);
    return 0;
}

 



这篇关于variadic template(二)的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程