Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- SwiftData
- xcode15
- watchapp
- tutorials
- KoreaMango
- ios
- 3주차
- Flutter
- swiftUI
- 개발자
- ActivityKit
- 콩세알프로젝트
- unittest
- watchkit
- 회고
- test
- 1주차
- RxSwift
- WWDC
- Unit
- Swift
- 대학생협
- Apple
- 티스토리챌린지
- 오블완
- 2주차
- @Model
- tutorial
- 프로그래머스
- 2023
Archives
- Today
- Total
목록2024/11/12 (1)
KoreaMango 나무
Flutter - 플러터의 메모리 관리
플러터에서는 어떻게 메모리 관리를 하는지 알아보고자 합니다. Dart는 Class 생성자를 사용하면 heap(힙) 이라고 불리는 메모리에 저장합니다. (Swift랑 똑같네요 :)) heap의 메모리는 Dart의 VM에서 관리를 하게 됩니다. Dart VM은 가비지 컬렉터(쓰레기 수집가?)가 존재해서객체가 필요할 땐 할당을 해주고, 필요가 없으면 해제를 해줍니다. https://medium.com/flutter/flutter-dont-fear-the-garbage-collector-d69b3ff1ca30 Flutter: Don’t Fear the Garbage CollectorFlutter uses Dart as a development language and as a runtime. Dart’s run..
Flutter
2024. 11. 12. 23:15