你怎么称呼这样的for循环?我真的想了解更多相关内容,但我无法找到有关它的任何信息。我知道:if语句的缩写。
for (int a : int b) { statement; }
答案 0 :(得分:-1)
这是一个简单的for-loop,我不认为你的例子是一个真实的例子:
如果我们谈论java并进行som更改,它将看起来像这样:
List<String> somelist = // fill up a list with some strings
//Itterates through the list and prints out each string
for (String value : somelist) { //Get string from list and set it to variable string
System.out.println(value);
}
在PHP中,它看起来像这样:
$somelist = array( fill array with strings );
//Itterates through the array and prints out each string
foreach ($somelist as $value){
echo $value;
}