FORMAT_ERROR_BACKTRACE和FORMAT_ERROR_BACKTRACE有什么区别?

解决方案 »

  1.   

    FORMAT_CALL_STACK和FORMAT_ERROR_BACKTRACE有什么区别?
      

  2.   

    FORMAT_CALL_STACK is useful in EXCEPTION blocks while debugging because
    it shows the calling hierarchy.FORMAT_ERROR_STACK does not state where exceptions are raised, unless
    they are unhandled!
      

  3.   

    英文解释的意思大概是:
    一般在exception块里调试的时候,用到CALL_STACK,用来打印出正确调用的层次关系;
    而ERROR_STACK,仅仅在真正出错的时候,能显示出来STACK的信息。