Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在使用 callgrind 分析我的代码后,我看到 __printf_fp() 是 self 列中具有更多价值的函数。这个函数是什么,什么时候调用?
谢谢!
__printf_pf()属于 libstdc++ 库。它主要由任何与 printf 相关的函数(ostream、ofstream 等)调用。但是,何时调用取决于此处指出的编译器和编译器版本:C++ output stream floating point call chain
__printf_pf()