# พื้นฐาน Dart (Flutter) > ตัวแปร, const/final, ชนิดข้อมูล, null safety, collections, control flow, functions, closures - 25 คำถามสัมภาษณ์ - Junior - [คำถามสัมภาษณ์: Flutter](https://sharpskill.dev/th/technologies/flutter/interview-questions.md) ## 1. ความแตกต่างระหว่าง var และ dynamic ใน Dart คืออะไร? **คำตอบ** var กำหนดชนิดในเวลาคอมไพล์ตามค่าที่กำหนดและคงที่หลังจากนั้น ในขณะที่ dynamic อนุญาตให้เปลี่ยนชนิดได้ตลอดเวลาขณะรันไทม์ การใช้ var เมื่อทราบชนิดให้ความปลอดภัยของชนิดที่ดีกว่าและประสิทธิภาพที่เหมาะสมที่สุด เนื่องจากคอมไพเลอร์สามารถตรวจสอบแบบสแตติกได้ ## 2. ความแตกต่างระหว่าง const และ final ใน Dart คืออะไร? **คำตอบ** final อนุญาตให้กำหนดค่าได้เพียงครั้งเดียว แต่ค่านี้สามารถกำหนดได้ขณะรันไทม์ const สร้างค่าคงที่เวลาคอมไพล์ที่ต้องทราบค่าก่อนการทำงาน const เข้มงวดกว่าและเปิดใช้การปรับให้เหมาะสมเพิ่มเติม เนื่องจากออบเจ็กต์ const ถูกทำให้เป็นรูปแบบมาตรฐานและแชร์ในหน่วยความจำ ## 3. ส่วนต่อท้าย ? ในชนิด Dart เช่น String? หมายความว่าอย่างไร? **คำตอบ** ส่วนต่อท้าย ? ระบุว่าตัวแปรสามารถมีค่า null นอกเหนือจากค่าปกติได้ นี่คือพื้นฐานของ null safety ที่นำมาใช้ใน Dart 2.12 หากไม่มีส่วนต่อท้ายนี้ ตัวแปรจะไม่สามารถเป็น null ได้ ซึ่งกำจัด NullPointerException ในเวลาคอมไพล์ แนวทางนี้รับประกันว่าข้อผิดพลาด null จะถูกตรวจพบก่อนการทำงาน ## มีอีก 22 คำถาม - ควรใช้ตัวดำเนินการใดเพื่อเข้าถึงพร็อพเพอร์ตี้ของออบเจ็กต์ที่อาจเป็น null อย่างปลอดภัย? - ตัวดำเนินการ ?? ทำอะไรใน Dart? สมัครฟรี: https://sharpskill.dev/th/login ## หัวข้อสัมภาษณ์ Flutter อื่นๆ - [พื้นฐานภาษา Dart](https://sharpskill.dev/th/technologies/flutter/interview-questions/dart-language-essentials.md): 15 คำถาม, Junior - [พื้นฐาน Flutter](https://sharpskill.dev/th/technologies/flutter/interview-questions/flutter-fundamentals.md): 18 คำถาม, Junior - [วงจรชีวิตของ Widget](https://sharpskill.dev/th/technologies/flutter/interview-questions/widget-lifecycle.md): 20 คำถาม, Junior - [การจัดเก็บข้อมูลในเครื่อง](https://sharpskill.dev/th/technologies/flutter/interview-questions/local-storage.md): 20 คำถาม, Junior - [วงจรชีวิตของแอปพลิเคชัน](https://sharpskill.dev/th/technologies/flutter/interview-questions/app-lifecycle.md): 20 คำถาม, Junior - [Layouts & Constraints](https://sharpskill.dev/th/technologies/flutter/interview-questions/layouts-constraints.md): 24 คำถาม, Mid-Level - [ListView & GridView](https://sharpskill.dev/th/technologies/flutter/interview-questions/listview-gridview.md): 25 คำถาม, Mid-Level - [การนำทางและ Routing](https://sharpskill.dev/th/technologies/flutter/interview-questions/navigation-routing.md): 22 คำถาม, Mid-Level - [การจัดการ State พื้นฐาน](https://sharpskill.dev/th/technologies/flutter/interview-questions/state-management-basics.md): 22 คำถาม, Mid-Level - [Provider Pattern](https://sharpskill.dev/th/technologies/flutter/interview-questions/provider-pattern.md): 18 คำถาม, Mid-Level - [Networking & HTTP](https://sharpskill.dev/th/technologies/flutter/interview-questions/networking-http.md): 20 คำถาม, Mid-Level - [การซีเรียลไลซ์ JSON](https://sharpskill.dev/th/technologies/flutter/interview-questions/json-serialization.md): 20 คำถาม, Mid-Level - [ฐานข้อมูลในเครื่อง](https://sharpskill.dev/th/technologies/flutter/interview-questions/local-database.md): 22 คำถาม, Mid-Level - [ฟอร์มและการตรวจสอบความถูกต้อง](https://sharpskill.dev/th/technologies/flutter/interview-questions/forms-validation.md): 20 คำถาม, Mid-Level - [แอนิเมชัน](https://sharpskill.dev/th/technologies/flutter/interview-questions/animations.md): 20 คำถาม, Mid-Level - [การผสานรวม Firebase](https://sharpskill.dev/th/technologies/flutter/interview-questions/firebase-integration.md): 18 คำถาม, Mid-Level - [การทดสอบยูนิต](https://sharpskill.dev/th/technologies/flutter/interview-questions/unit-testing.md): 20 คำถาม, Mid-Level - [การทดสอบ widget](https://sharpskill.dev/th/technologies/flutter/interview-questions/widget-testing.md): 18 คำถาม, Mid-Level - [การ Build และ Deploy](https://sharpskill.dev/th/technologies/flutter/interview-questions/build-deployment.md): 16 คำถาม, Mid-Level - [การจัดการแพ็กเกจ](https://sharpskill.dev/th/technologies/flutter/interview-questions/package-management.md): 16 คำถาม, Mid-Level - [หน่วยความจำและประสิทธิภาพ](https://sharpskill.dev/th/technologies/flutter/interview-questions/memory-performance.md): 22 คำถาม, Senior - [Streams & RxDart](https://sharpskill.dev/th/technologies/flutter/interview-questions/streams-rxdart.md): 24 คำถาม, Senior - [State Management ขั้นสูง](https://sharpskill.dev/th/technologies/flutter/interview-questions/advanced-state-management.md): 26 คำถาม, Senior - [Flutter Design Patterns](https://sharpskill.dev/th/technologies/flutter/interview-questions/flutter-design-patterns.md): 24 คำถาม, Senior - [การเพิ่มประสิทธิภาพการทำงาน](https://sharpskill.dev/th/technologies/flutter/interview-questions/performance-optimization.md): 26 คำถาม, Senior - [Platform Channels](https://sharpskill.dev/th/technologies/flutter/interview-questions/platform-channels.md): 20 คำถาม, Senior - [Custom Painting](https://sharpskill.dev/th/technologies/flutter/interview-questions/custom-painting.md): 22 คำถาม, Senior - [สถาปัตยกรรมแอปพลิเคชัน Flutter](https://sharpskill.dev/th/technologies/flutter/interview-questions/flutter-app-architecture.md): 22 คำถาม, Senior --- Source: SharpSkill (https://sharpskill.dev), tech interview preparation for your real stack. HTML version of this page: https://sharpskill.dev/th/technologies/flutter/interview-questions/dart-basics