Most common reasons for unstable bugs in C++?

后端 未结 9 1805
终归单人心
终归单人心 2020-12-28 23:16

I am currently working on a large project, and I spend most of the time debugging. While debugging is a normal process, there are bugs, that are unstable, and these bugs are

9条回答
  •  暗喜
    暗喜 (楼主)
    2020-12-28 23:53

    • buffer overflows
    • using pointers to deleted objects
    • returning invalid references or references to out of scope objects
    • unhandled exceptions
    • resource leaks (not only memory)
    • infinite recursion

    • dynamic libraries version mismatch

提交回复
热议问题