"ForEach"의 두 판 사이의 차이

282번째 줄: 282번째 줄:


==같이 보기==
==같이 보기==
*[[for]]
* [[for]]
*[[items]]
* [[items]]
*[[while]]
* [[while]]
*[[continue]]
* [[continue]]
*[[print_r]]
* [[print_r]]
*[[Variable-length argument lists]]
* [[Variable-length argument lists]]
*[[array]]
* [[array]]
*[[dictionary]]
* [[dictionary]]
*[[array_push]]
* [[array_push]]
*[[함수 map()]]
* [[함수 count()]]
*[[제어문]]
* [[함수 map()]]
*[[C샵 키워드|C# 키워드]]
* [[제어문]]
* [[C샵 키워드|C# 키워드]]


==참고 자료==
==참고 자료==
*http://eqcode.com/wiki/Foreach
*http://eqcode.com/wiki/Foreach

2017년 6월 9일 (금) 14:06 판

  다른 뜻에 대해서는 jQuery .each() 문서를 참조하십시오.

extended for
foreach ... as
foreach ... in
for ... in
each

1 Bash

ARR=("John Smith" "Jane Doe" "Mike Barnes" "Kevin Patterson")
for VALUE in "${ARR[@]}"; do
	echo "[$VALUE]"
done
# [Jonh Smith]
# [Jane Doe]
# [Mike Barnes]
# [Kevin Patterson]
ARR=("John Smith" "Jane Doe" "Mike Barnes" "Kevin Patterson")
for i in "${!ARR[@]}"; do
	echo $i: ${ARR[$i]}
done
# 0: John Smith
# 1: Jane Doe
# 2: Mike Barnes
# 3: Kevin Patterson
ARR=("John Smith" "Jane Doe" "Mike Barnes" "Kevin Patterson")
for i in "${!ARR[@]}"; do
	echo $((i+1)): ${ARR[$i]}
done
# 1: John Smith
# 2: Jane Doe
# 3: Mike Barnes
# 4: Kevin Patterson

2 C#

// http://msdn.microsoft.com/en-us/library/ttw7t8t6(v=vs.90).aspx
int[] fibarray = new int[] { 0, 1, 2, 3, 5, 8, 13 };
foreach (int i in fibarray)
{
  System.Console.WriteLine(i);
}

3 Java

String[] strArr = { "John Smith", "Jane Doe", "Mike Barnes", "Kevin Patterson" };
for (String str : strArr){
	System.out.println(str);
}
// John Smith
// Jane Doe
// Mike Barnes
// Kevin Patterson

4 JavaScript

  • i is not value but key!
var arr = ["John Smith", "Jane Doe", "Mike Barnes", "Kevin Patterson"];
for(var i in arr) {
  console.log(arr[i]);
}
// John Smith
// Jane Doe
// Mike Barnes
// Kevin Patterson
var arr = ["John Smith", "Jane Doe", "Mike Barnes", "Kevin Patterson"];
for(var i in arr) {
  console.log(i+": "+arr[i]);
}
// 0: John Smith
// 1: Jane Doe
// 2: Mike Barnes
// 3: Kevin Patterson

5 jQuery

var arr = ["John Smith", "Jane Doe", "Mike Barnes", "Kevin Patterson"];
$.each(arr, function() {
  console.log(''+this);
});
// John Smith
// Jane Doe
// Mike Barnes
// Kevin Patterson
var arr = ["John Smith", "Jane Doe", "Mike Barnes", "Kevin Patterson"];
$.each(arr, function(i, val) {
  console.log(i+': '+val);
});
// 0: John Smith
// 1: Jane Doe
// 2: Mike Barnes
// 3: Kevin Patterson

6 Objective-C

NSArray *strArr = [[NSArray alloc] initWithObjects:@"A", @"B", @"C", @"D"];
for(NSString *str in strArr) {
  NSLog(@"%@\n", str);
}

7 Perl

@strArr = ('A', 'B', 'C', 'D');
foreach $str (@strArr) {
  print "$str ";
}
# A B C D

foreach (@strArr) {
  print "$_ ";
}
# A B C D

for $str (@strArr) {
  print "$str ";
}
# A B C D

for (@strArr) {
  print "$_ ";
}
# A B C D

8 PHP

$strArr = array('A', 'B', 'C', 'D');
foreach ($strArr as $str) {
  echo $str.' ';
}
// A B C D
foreach (range(1,5) as $i) {
  echo "$i ";
}
// 1 2 3 4 5
$fruits = array('a'=>'apple', 'b'=>'banana', 'c'=>'cranberry');
foreach($fruits as $key => $value) {
	echo $key."_".$value."\n";
}
// a_apple
// b_banana
// c_cranberry

9 PowerShell

$arr = @(1,"Hello",3.5)
foreach ($v in $arr) {$v}
# 1
# Hello
# 3.5
$arr = @(1,"Hello",3.5)
$arr
# 1
# Hello
# 3.5

10 Python

fruits = ['Banana', 'Orange', 'Apple', 'Mango']
for fruit in fruits:
	print( fruit )
# Banana
# Orange
# Apple
# Mango
for fruit in ('Banana', 'Orange', 'Apple', 'Mango'):
	print( fruit )
for ch in 'ABC':
	print( ch )
dictionary
fruits = {'a':'apple', 'b':'banana', 'c':'cranberry'}
for key in fruits:
	print key + '_' + fruits[key]
# a_apple
# c_cranberry
# b_banana
fruits = {'a':'apple', 'b':'banana', 'c':'cranberry'}
for k, v in fruits.items():
	print k + '_' + v
# a_apple
# c_cranberry
# b_banana

11 Ruby

  • Array
strArr = ['A', 'B', 'C']
strArr.each do |str|
    puts str
end
# A
# B
# C
strArr = ['A', 'B', 'C']
strArr.each { |str| puts str }
# A
# B
# C
strArr = ['A', 'B', 'C']
for str in strArr
  puts str
end
# A
# B
# C
  • Dictionary
member = { "ID" => 102, "Name" => "YONEZAWA Akinori" }
member.each { |x, y| puts "#{x}: #{y}" }
# ID: 102
# Name: YONEZAWA Akinori
member = { "ID" => 102, "Name" => "YONEZAWA Akinori" }
member.each do |x, y|
    puts "#{x}: #{y}"
end
# ID: 102
# Name: YONEZAWA Akinori

12 VB

For Each number As Integer In New Long() {45, 3, 987}
  Console.Write(number & " ")
Next
' Output: 45 3 987

13 같이 보기

14 참고 자료