摘要: large_bin的结构如下 /* This struct declaration is misleading (but accurate and necessary). It declares a "view" into memory allowing access to necessary fi 阅读全文
posted @ 2025-02-19 22:27 dr4w 阅读(37) 评论(0) 推荐(0)
摘要: fmt_str 原理介绍 格式化字符串函数介绍 格式化字符串函数可以接受可变数量的参数,并将第一个参数作为格式化字符串,根据其来解析之后的参数。通俗来说,格式化字符串函数就是将计算机内存中表示的数据转化为我们人类可读的字符串格式。几乎所有的 C/C++ 程序都会利用格式化字符串函数来输出信息,调试程 阅读全文
posted @ 2025-02-19 22:16 dr4w 阅读(80) 评论(0) 推荐(0)