我可以在Linux平台的C printf中添加新的格式说明符类型吗?

前端之家收集整理的这篇文章主要介绍了我可以在Linux平台的C printf中添加新的格式说明符类型吗?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
如何添加一个新的格式说明符,例如%k,它将以特定格式打印特定的用户定义结构?

我想做的事:-

struct k {
    //members
}s1;
printf ("%k",s1);

此printf应以用户定义的方式打印结构.

解决方法

是的,使用register_printf_function是可能的(但不可移植),有关详细信息,请参阅libc文档中的 12.13 Customizing printf

The GNU C Library lets you define your own custom conversion
specifiers for printf template strings,to teach printf clever ways to
print the important data structures of your program.

Here是如何为MAC地址创建这种自定义格式说明符的示例.

原文链接:https://www.f2er.com/linux/393972.html

猜你在找的Linux相关文章