■ 로컬 함수를 사용하는 방법을 보여준다.
▶ 예제 코드 (C#)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 |
using System; using System.Collections.Generic; foreach(int number in GetNumberEnumerable(100, n => n % 2 == 0)) { Console.WriteLine(number); } #region 숫자 열거 가능형 구하기 - GetNumberEnumerable(count, filterFunction) /// <summary> /// 숫자 열거 가능형 구하기 /// </summary> /// <param name="count">카운트</param> /// <param name="filterFunction">필터 함수</param> /// <returns>숫자 열거 가능형</returns> private IEnumerable<int> GetNumberEnumerable(int count, Func<int, bool> filterFunction) { if(count < 1) { throw new ArgumentException(); } if(filterFunction == null) { throw new ArgumentException(); } return GetNumberEnumerable(); IEnumerable<int> GetNumberEnumerable() { for(int i = 0; i < count; i++) { if(filterFunction(i)) { yield return i; } } } } #endregion |