- 论坛徽章:
- 0
|
请教CUer一个基础问题,大致信息如下 先谢谢.
1) 最近接收维护一个有历史的lib, 其中Class C 继承 Base A 和 Base B
A用于定义一个连接池维护算法, B用于附加属性和状态管理
A,B 均有Virtual Methods
2) 由于连接池算法针对Base A, 所以
以前的逻辑是取得A类型后用强制转换来得到C类型, C* pXC = (C*) pX;
3) 在出现奔溃后,改成 C* pXC = dynamic_cast <C*> pX;
4) 症状: 在出错的情况下没有返回NULL而是直接Crash掉了
5) 问题: dynamic_cast 有哪些可能的情况不返回NULL而是直接奔溃?
6) 有任何更新,我会直接编辑这个Post 
# Java VM: Java HotSpot(TM) Client VM (14.3-b01 mixed mode linux-x86 )
# Problematic frame:
# C [libstdc++.so.6+0xb357e] __dynamic_cast+0x2e
#
# If you would like to submit a bug report, please visit:
# http://java.sun.com/webapps/bugreport/crash.jsp
# The crash happened outside the Java Virtual Machine in native code.
# See problematic frame for where to report the bug.
#
--------------- T H R E A D ---------------
Current thread (0x0a19c400): JavaThread "TP-Processor1" daemon [_thread_in_native, id=24193, stack(0xe5931000,0xe5b32000)]
siginfo:si_signo=SIGSEGV: si_errno=0, si_code=1 (SEGV_MAPERR), si_addr=0x0000000c
Registers:
EAX=0x00000008, EBX=0x00000000, ECX=0x00000001, EDX=0x0a5341e8
ESP=0xe5b308e0, EBP=0xe5b30928, ESI=0x0a5341e8, EDI=0x00000000
EIP=0xebafd57e, CR2=0x0000000c, EFLAGS=0x00210212
Top of Stack: (sp=0xe5b308e0)
0xe5b308e0: 00000000 00000000 00000000 00000000
0xe5b308f0: 00000000 00000000 00000000 00000000
0xe5b30900: 00000000 00000000 00000000 00000000
0xe5b30910: 00000000 00000000 00000000 0a5341e8
0xe5b30920: 0a4b4458 00000000 e5b30948 ec3bb1f0
0xe5b30930: 0a5341e8 ec3f3c04 ec3f44e0 00000000
0xe5b30940: 00000000 0a52d1b4 e5b30988 ebbd743f
0xe5b30950: 0a4b4458 000003e8 00000001 00000000
Instructions: (pc=0xebafd57e)
0xebafd56e: 00 00 8b 02 89 d6 c7 45 e4 00 00 00 00 83 e8 08
0xebafd57e: 8b 50 04 03 30 8d 45 e4 c7 45 f4 10 00 00 00 8b
Stack: [0xe5931000,0xe5b32000], sp=0xe5b308e0, free space=2046k
Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code)
C [libstdc++.so.6+0xb357e] __dynamic_cast+0x2e
C [libSomeLib.so+0x9d1f0] methodOfSomeLib+0x8c |
|