Qt中指针异常问题解决

构建时,报如下错误:

error: Exception at 0x7ff8593d4ab0, code: 0x80000002: datatypemisalignment, flags=0x1 (execution cannot be continued) (first chance)

error: Exception at 0xcc974d, code: 0xc0000005: read access violation at:0x0, flags=0x0 (first chance)

调试时会出现如下提示,

异常被触发:底层停止了因为它触发了一个异常。在线程0中停止,因为: Exception at  0xcc974d,, code: 0xc0000005: read access violation at: 0x0, flags=0x0

后台发现是由于添加的成员变量没有给赋值,直接使用了,就会报类似的错误。

你可能感兴趣的:(Qt)