你把这样的 for 循环称为什么?我真的很想了解更多关于它的信息,但我无法找到任何关于它的信息。我知道 : 是 if 语句的缩写。
for (int a : int b) { statement; }
你把这样的 for 循环称为什么?我真的很想了解更多关于它的信息,但我无法找到任何关于它的信息。我知道 : 是 if 语句的缩写。
for (int a : int b) { statement; }
这是一个简写的for循环,我不认为你的例子是一个实际的例子,所以:
如果我们谈论 java 并进行一些更改,它将看起来像这样:
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;
}