先看一下例子:
1 #include
2
3 int main()
4 {
5 std::list lst;
6
7 lst.push_back( 0x12345678 );
8 lst.push_front( 0xabcdef01 );
9 lst.push_back( 0x24242522 );
10
11 ...
分类:
系统相关 时间:
2015-04-23 23:29:10
阅读次数:
269
看一个coredump的例子:
[xuzhina@localhost s1_ex]$ gdb xuzhina_dump_c07_s1_ex core.27776
GNU gdb (GDB) Red Hat Enterprise Linux (7.2-75.el6)
Copyright (C) 2010 Free Software Foundation, Inc.
License GPLv3...
分类:
系统相关 时间:
2015-04-22 00:41:09
阅读次数:
235
目录(?)[+] 作为开发人员,掌握开发环境下的调试技巧十分有必要。去年就想把关于Eclipse断点调试总结下了,由于对时间的掌控程度仍需极大提高,结果拖到今年才写了此篇博文。关于java调试技术还有很多,如Java Debug Interface等,依据具体项目的需要,还有很多值得去研究和学习的....
分类:
系统相关 时间:
2015-03-12 14:39:43
阅读次数:
159
系统:windows xp sp3
崩溃的exe:insight3_en.exe
版本:3.50.0064
崩溃时的信息:
The stored exception information can be accessed via .ecxr.
(5404.5050): Access violation - code c0000005 (first/second chance not...
分类:
其他好文 时间:
2015-03-04 17:08:52
阅读次数:
147
系统:windows xp sp3
崩溃的exe:insight3_en.exe
版本:3.50.0064
崩溃时的信息:
(4c64.4af4): Access violation - code c0000005 (!!! second chance !!!)
eax=00000000 ebx=7ffd9000 ecx=00000000 edx=00000274 esi=000...
分类:
其他好文 时间:
2015-03-04 13:04:09
阅读次数:
334
Shell脚本调试技术本文全面系统地介绍了shell脚本调试技术,包括使用echo, tee, trap等命令输出关键信息,跟踪变量的值,在脚本中植入调试钩子,使用“-n”选项进行shell脚本的语法检查, 使用“-x”选项实现shell脚本逐条语句的跟踪,巧妙地利用shell的内置变量增强“-x”...
分类:
系统相关 时间:
2015-02-26 19:58:31
阅读次数:
226
先看一下例子:
1 #include
2
3 int main()
4 {
5 std::vector vec;
6 vec.push_back( 0xffeeffab );
7 vec.push_back( 0xabcdef01 );
8 vec.push_back( 0x12345678 );
9 return ...
分类:
系统相关 时间:
2015-02-25 23:45:49
阅读次数:
252
下面看一个coredump的例子:
(gdb) bt
#0 0x08048662 in xuzhina_dump_c06_s5_ex_child::inheritFrom(char*, int) ()
#1 0x08048609 in main ()
先看一下xuzhina_dump_c06_s5_ex_child::inheritFrom的汇编:
(gdb) disassembl...
分类:
系统相关 时间:
2015-02-16 22:12:13
阅读次数:
204
类的多继承大致可以分为两种情况.一种是无共同基类的.一种是有共同基类的.
先看一下第一种情况:
1 #include
2 class xuzhina_dump_c06_s5_mother
3 {
4 private:
5 int m_age;
6 int m_beauty;
7 public:
8 ...
分类:
系统相关 时间:
2015-02-08 10:22:54
阅读次数:
349
在C++里,类的多态是通过继承由虚函数来体现的。那么在单继承中,类的成员变量和虚函数的分布又是怎样的呢?
看一下例子:
1 #include
2 class xuzhina_dump_c06_s4_base
3 {
4 private:
5 int m_a;
6 public:
7 xuzhina_du...
分类:
系统相关 时间:
2015-02-04 20:27:13
阅读次数:
246