gpt4 book ai didi

java - 如何在 Rhythm 中编写 WHILE 循环

转载 作者:行者123 更新时间:2023-12-04 05:39:03 24 4
gpt4 key购买 nike

我尝试在 HTML 标签中的 Rhythm 中编写一个 While 循环,但我不能

像这样的代码:

@{
int i = 0;
while( i< 5){
i++;
}

<h2>hello</h2>

@{
}
}

最佳答案

目前节奏不支持while循环。使用 for循环代替您的情况:

@for(int i = 0; i < 5; ++i) {
<h2>hello</h2>
}

关于java - 如何在 Rhythm 中编写 WHILE 循环,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11509337/

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