gpt4 book ai didi

c++ - 如何运行无限循环?

转载 作者:塔克拉玛干 更新时间:2023-11-03 08:08:10 25 4
gpt4 key购买 nike

我想基本上永远一遍又一遍地运行一些代码,但我不希望我的计算机耗尽内存或类似的东西。所以我想知道如何在 C++ 中做到这一点?我这样做了。

for (int i = 0; i <= 2; i++) {
if (i == 1) {i = 0;}
//My code here
}

我想知道这是否会对我的计算机造成不良影响?

最佳答案

while(true)
{
//Your code here
}

关于c++ - 如何运行无限循环?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32675542/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com