| 注册
请输入搜索内容

热门搜索

Java Linux MySQL PHP JavaScript Hibernate jQuery Nginx
jopen
11年前发布

替换printf的C++库:tinyformat.h

这是一个最小的类型安全替换printf的C++库。

设计目标:

  • Simplicity and minimalism. A single header file to include and distribute with your own projects.
  • Type safety and extensibility for user defined types.
  • Support as many commonly used C99 printf() features as practical without compromising on simplicity.
  • Use variadic templates with C++0x but provide good C++98 support for backward compatibility

示例用法:

std::string weekday = "Wednesday";  const char* month = "July";  long day = 27;  int hour = 14;  int min = 44;    tfm::format(std::cout, "%s, %s %d, %.2d:%.2d\n",              weekday, month, day, hour, min);

项目主页:http://www.open-open.com/lib/view/home/1366531074500

 本文由用户 jopen 自行上传分享,仅供网友学习交流。所有权归原作者,若您的权利被侵害,请联系管理员。
 转载本站原创文章,请注明出处,并保留原始链接、图片水印。
 本站是一个以用户分享为主的开源技术平台,欢迎各类分享!
 本文地址:https://www.open-open.com/lib/view/open1366531074500.html
C/C++开发 C/C++