Java casting / classloader issues

前端 未结 4 471
轻奢々
轻奢々 2021-01-14 17:10

Here is the simplified version of the problem:

 SomeClass c = (SomeClass) obj.getSomeClassParent()

not always but it happens sometimes to t

4条回答
  •  迷失自我
    2021-01-14 17:43

    Strange have you tried casting it to a Object it extends, not sure if it has the functionality you require but might be worth trying to see if it still throws the exception.

提交回复
热议问题