Notice
Recent Posts
Recent Comments
Link
투케이2K
76. (Flutter/플러터) [Mac] : [Dart] : 다트 - where 사용해 List 리스트에서 특정 조건 지정 및 데이터 확인 본문
Flutter
76. (Flutter/플러터) [Mac] : [Dart] : 다트 - where 사용해 List 리스트에서 특정 조건 지정 및 데이터 확인
투케이2K 2024. 5. 30. 20:08[개발 환경 설정]
개발 툴 : AndroidStudio
개발 언어 : Dart
[소스 코드]
import 'package:flutter/material.dart';
import 'dart:developer';
import 'dart:core';
// -----------------------------------------------------------------------------------------
// TODO [main] : [application 의 진입점 역할]
// -----------------------------------------------------------------------------------------
void main() {
/**
* ------------------------------------------------
* [요약 설명]
* ------------------------------------------------
* 1. where : 조건자를 만족하는 요소를 반환합니다
* ------------------------------------------------
* 2. 참고 사이트 :
*
* https://api.dart.dev/stable/3.4.2/dart-core/Iterable/where.html
* ------------------------------------------------
* */
try {
// [초기 변수 선언]
var numbers = <int>[1, 2, 3, 5, 6, 7];
// [where 사용해 특정 조건 지정해 배열 요소 출력]
var array_where = numbers.where((x) => x < 5); // 배열 요소에서 5 미만인 것들 확인
// [로그 출력]
log("");
log("-------------------------------------------------------");
log("array_where :: ${array_where}");
log("-------------------------------------------------------");
log("");
}
catch (e) {
log("");
log("-------------------------------------------------------");
log("Catch :: ${e}");
log("-------------------------------------------------------");
log("");
}
}
[결과 출력]
반응형
'Flutter' 카테고리의 다른 글
Comments