"Continue"의 두 판 사이의 차이

62번째 줄: 62번째 줄:
</source>
</source>


==See also==
==같이 보기==
*[[break]]
*[[for]]
*[[for]]
*[[foreach]]
*[[foreach]]
*[[while]]
*[[while]]
*[[pass]]
*[[pass]]

2014년 8월 22일 (금) 13:26 판

  다른 뜻에 대해서는 iter 문서를 참조하십시오.
continue
next

1 Bash

ARR=(1 12 3 14)
for VALUE in "${ARR[@]}"; do
  if(("$VALUE" < "10")); then 
    continue
  fi
  echo $VALUE
done
# 12
# 14

2 PHP

for
$arr = array(1, 12, 3, 14);
for($i=0; $i<count($arr) ;$i++) {
  if($arr[$i] < 10) continue;
  echo "${arr[$i]}<br>";
}
// 12
// 14
foreach
$arr = array(1, 12, 3, 14);
foreach($arr as $value) {
  if($value < 10) continue;
  echo "$value<br>";
}

3 Python

nums = [1, 12, 3, 14]
for num in nums:
	if num<10:
		continue
	print(num)
# 12
# 14

4 Ruby

for i in 1..5
    next if i % 2 == 1
    puts i
end
# 2
# 4

5 같이 보기

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}