C++ error on Ms Visual Studio: “Windows has triggered a breakpoint in javaw.exe”

前端 未结 4 528
一个人的身影
一个人的身影 2020-12-10 06:17

I\'ve been always working on my software C++ & Java (build with Microsoft Visual Studio 2008 & Eclipse), and I\'ve been trying to move it from a 32-bit system to a 6

4条回答
  •  一个人的身影
    2020-12-10 06:36

    Typically that kind of errors occurs when you trying to access the memory you didn't allocate. Check out all of your allocations (and freeing), especially pointer-to-pointer, and code that can access dinamically allocated memory. In your case size of poiners is 64bit insdead of 32bit, that should be prime cause.

提交回复
热议问题