Most common reasons for unstable bugs in C++?

后端 未结 9 1783
终归单人心
终归单人心 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

    • Reading from uncached memory while a cache line is being written back over the memory (This is a right bastard to find).
    • Buffer overwrites
    • Stack overflows!

    The only 3 i can think of at the mo ... may edit later :)

提交回复
热议问题