It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center。
9年前关闭。
我只是一个傻瓜,他发现这种有趣的脚本工具很有趣:)
我的老师对此表示坚决,因为它是检查故障硬盘的好工具。我只是想知道这个循环是否足以使PC崩溃或对硬件造成永久损坏...
9年前关闭。
我只是一个傻瓜,他发现这种有趣的脚本工具很有趣:)
for(i = 0; i < 100000000000000000000000; i++)
{
System.Diagnostics.Process StartTheKill;
StartTheKill = new System.Diagnostics.Process();
StartTheKill.EnableRaisingEvents = false;
string TheCommand;
TheCommand = "/C tree C:/";
System.Diagnostics.Process.Start("CMD.exe", TheCommand);
StartTheKill.Close();
}
我的老师对此表示坚决,因为它是检查故障硬盘的好工具。我只是想知道这个循环是否足以使PC崩溃或对硬件造成永久损坏...
最佳答案
我怀疑这是否会使机器崩溃。
每个进程都会占用一些内存,并且您很快就会用完内存,此时操作系统将拒绝启动更多任务。您可能会看到一个关于虚拟内存不足的对话框。
损坏硬件?你一定是在开玩笑。
09-26 06:49