enumerable 뜻
- 1세기 가능한 [계산 또는 나열 가능]
- 2열거 가능한 [반복 할 수 있습니다.]
enumerable는 어떻게 사용할 수 있을까요?
아래 예문들을 통해 다양한 상황에서 "enumerable"가 어떻게 쓰일 수 있는지 알아보세요!
예문
The enumerable items in the list are displayed on the screen.
목록에서 열거 가능한 항목이 화면에 표시됩니다.
예문
The properties of an object in JavaScript are enumerable by default.
JavaScript에서 객체의 속성은 기본적으로 열거 가능합니다.
예문
The algorithm requires an enumerable set of inputs.
이 알고리즘에는 열거 가능한 입력 집합이 필요합니다.
enumerable의 유의어와 반의어
enumerable의 반의어
- uncountable
- non-enumerable
enumerable와(과) 관련된 관용어는 어떤 것들이 있나요?
Enumerable.Range
지정된 범위 내에서 일련의 정수를 생성하는 C#의 메서드입니다.
예문
int[] numbers = Enumerable.Range(1, 10).ToArray();
int[] numbers = Enumerable.Range(1, 10).ToArray();
Enumerable.OrderBy
키에 따라 시퀀스의 요소를 오름차순으로 정렬하는 LINQ의 메서드입니다.
예문
var sortedList = list.OrderBy(x => x.Name);
var sortedList = list.OrderBy(x => x.Name);
Enumerable.Distinct
값을 비교하기 위해 기본 같음 비교자를 사용하여 시퀀스에서 고유한 요소를 반환하는 LINQ의 메서드입니다.
예문
var distinctList = list.Distinct();
var distinctList = list.Distinct();
enumerable: 핵심 요약
enumerable [ɪˈnjuːmərəbl] 이라는 용어는 셀 수 있고 나열할 수 있고 반복할 수 있는 것을 의미합니다. 일반적으로 'Enumerable.Range', 'Enumerable.OrderBy' 및 'Enumerable.Distinct'와 같은 C# 및 LINQ 메서드의 컨텍스트와 같은 컴퓨터 프로그래밍에서 사용됩니다.