Purposefully debugging without using a debugger?

后端 未结 20 2104
春和景丽
春和景丽 2021-02-01 08:49

In chapter 5 of \"The Practice of Programming\" Brian Kernighan and Rob Pike write:

As a personal choice, we tend not to use debuggers beyond getting a st

20条回答
  •  终归单人心
    2021-02-01 09:39

    When I have a reproducable scenario I definitly use the debugger to track down that bug. Otherwise it is basically used only to get a stack trace from a core dump.

    Traces are the basis to start to work on an issue

    NB Embedded application in vehicle.

提交回复
热议问题