What is Dynamic Code Analysis?

前端 未结 4 1928
醉话见心
醉话见心 2021-01-01 12:54

What is Dynamic Code Analysis?

How is it different from Static Code Analysis (ie, what can it catch that can\'t be caught in static)?

I\'ve heard of bounds c

4条回答
  •  自闭症患者
    2021-01-01 13:16

    Bounds checking

    This means runtime checks of array accesses. Contrary to C's laissez-faire approach to memory accesses and pointer arithmetic, other languages like Java or C# actually check whether or not a given array has the element one is trying to access.

提交回复
热议问题