学习笔记
红烧牛肉面也被占用了
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
STL中array<>内部为什么不能交换指针呢
引用自《The C++ Standard Library Second Edition》:Note, however, that an array<> can’t simply swap pointers internally. For this reason, swap() has linear complexity and the effect that iterators and ref原创 2013-10-21 20:23:43 · 783 阅读 · 0 评论 -
调试时用readelf定位函数指针调用的函数
用不了gdb只能加LOG调试,需要查出在程序执行时一个函数指针具体调用的是哪个函数。可以用LOG打印出执行时函数指针的值,然后用readelf命令查询出这个值对应的函数名readelf program|grep addr原创 2013-10-16 21:23:49 · 1497 阅读 · 2 评论
分享