我在Delphi应用程序中声明了表:
x,y,z,r:array [1..10000000] of double;
t1,t2,t3,t4:array [1..10000000] of integer;
Run Code Online (Sandbox Code Playgroud)
在一切都好之前,但现在我遇到了一些pcs错误(在大多数pc:s错误未来):
"The application failed to initialize properly (0xc0000005)"
Run Code Online (Sandbox Code Playgroud)
如果我更改表更小:
x,y,z,r:array [1..5000000] of double;
t1,t2,t3,t4:array [1..5000000] of integer;
Run Code Online (Sandbox Code Playgroud)
错误消失了