# Concurrency Basics (Rust) > Threads, thread::spawn, move closures, channels (mpsc), trait Send & Sync, thread safety - 20 คำถามสัมภาษณ์ - Mid-Level - [คำถามสัมภาษณ์: Rust](https://sharpskill.dev/th/technologies/rust/interview-questions.md) ## 1. ควรใช้ฟังก์ชันใดในการสร้าง thread ใหม่ใน Rust? **คำตอบ** ฟังก์ชัน thread::spawn จากโมดูล std::thread จะสร้าง thread การทำงานใหม่ โดยรับ closure เป็นพารามิเตอร์และคืนค่า JoinHandle ที่ช่วยให้รอ thread ทำงานเสร็จด้วยเมธอด join() ได้ ฟังก์ชันนี้เป็นจุดเริ่มต้นหลักสำหรับการเขียนโปรแกรมแบบ concurrent ที่อิงกับ thread ใน Rust ## 2. เมธอด join() ที่เรียกบน JoinHandle คืนค่าอะไร? **คำตอบ** เมธอด join() คืนค่า Result โดยที่ T คือชนิดข้อมูลที่ closure ของ thread คืนค่า ถ้า thread ทำงานเสร็จตามปกติ จะได้ Ok(ค่า) ถ้า thread เกิด panic จะได้ Err ที่มีข้อมูลของ panic วิธีนี้ช่วยให้ดึงผลลัพธ์ของ thread หรือจัดการข้อผิดพลาดได้อย่างปลอดภัย ## 3. ทำไมต้องใช้คีย์เวิร์ด move กับ closure ที่ส่งให้ thread::spawn? **คำตอบ** คีย์เวิร์ด move บังคับให้ closure รับ ownership ของตัวแปรที่จับมาแทนการยืม สิ่งนี้จำเป็นกับ thread::spawn เพราะ thread ใหม่อาจมีอายุยืนกว่า scope ที่ประกาศตัวแปร หากไม่มี move คอมไพเลอร์จะปฏิเสธเพราะไม่สามารถรับประกันได้ว่า reference จะยังคงใช้งานได้ตลอดอายุของ thread ## มีอีก 17 คำถาม - trait Send ใน Rust มีบทบาทอะไร? - trait Sync ใน Rust มีบทบาทอะไร? สมัครฟรี: https://sharpskill.dev/th/login ## หัวข้อสัมภาษณ์ Rust อื่นๆ - [พื้นฐาน Rust](https://sharpskill.dev/th/technologies/rust/interview-questions/rust-basics.md): 25 คำถาม, Junior - [Ownership & Borrowing](https://sharpskill.dev/th/technologies/rust/interview-questions/ownership-borrowing.md): 22 คำถาม, Junior - [Structs & Enums](https://sharpskill.dev/th/technologies/rust/interview-questions/structs-enums.md): 20 คำถาม, Junior - [การจัดการข้อผิดพลาด](https://sharpskill.dev/th/technologies/rust/interview-questions/error-handling.md): 18 คำถาม, Junior - [คอลเลกชัน](https://sharpskill.dev/th/technologies/rust/interview-questions/collections.md): 20 คำถาม, Junior - [โมดูลและแพ็กเกจ](https://sharpskill.dev/th/technologies/rust/interview-questions/modules-packages.md): 18 คำถาม, Junior - [Traits](https://sharpskill.dev/th/technologies/rust/interview-questions/traits.md): 22 คำถาม, Mid-Level - [Generics](https://sharpskill.dev/th/technologies/rust/interview-questions/generics.md): 20 คำถาม, Mid-Level - [Lifetimes](https://sharpskill.dev/th/technologies/rust/interview-questions/lifetimes.md): 20 คำถาม, Mid-Level - [Iterators & Closures](https://sharpskill.dev/th/technologies/rust/interview-questions/iterators-closures.md): 22 คำถาม, Mid-Level - [Smart Pointers](https://sharpskill.dev/th/technologies/rust/interview-questions/smart-pointers.md): 22 คำถาม, Mid-Level - [async/await](https://sharpskill.dev/th/technologies/rust/interview-questions/async-await.md): 22 คำถาม, Mid-Level - [Testing](https://sharpskill.dev/th/technologies/rust/interview-questions/testing.md): 18 คำถาม, Mid-Level - [Cargo & Ecosystem](https://sharpskill.dev/th/technologies/rust/interview-questions/cargo-ecosystem.md): 18 คำถาม, Mid-Level - [Pattern Matching](https://sharpskill.dev/th/technologies/rust/interview-questions/pattern-matching.md): 18 คำถาม, Mid-Level - [มาโคร](https://sharpskill.dev/th/technologies/rust/interview-questions/macros.md): 20 คำถาม, Mid-Level - [Serde และการ Serialization](https://sharpskill.dev/th/technologies/rust/interview-questions/serde-serialization.md): 20 คำถาม, Mid-Level - [Unsafe Rust](https://sharpskill.dev/th/technologies/rust/interview-questions/unsafe-rust.md): 20 คำถาม, Senior - [Trait ขั้นสูง](https://sharpskill.dev/th/technologies/rust/interview-questions/advanced-traits.md): 22 คำถาม, Senior - [Lifetime ขั้นสูง](https://sharpskill.dev/th/technologies/rust/interview-questions/advanced-lifetimes.md): 20 คำถาม, Senior - [Type System](https://sharpskill.dev/th/technologies/rust/interview-questions/type-system.md): 20 คำถาม, Senior - [Tokio & Async I/O](https://sharpskill.dev/th/technologies/rust/interview-questions/tokio-async.md): 22 คำถาม, Senior - [การเพิ่มประสิทธิภาพ](https://sharpskill.dev/th/technologies/rust/interview-questions/performance-optimization.md): 20 คำถาม, Senior - [Memory Management](https://sharpskill.dev/th/technologies/rust/interview-questions/memory-management.md): 20 คำถาม, Senior - [Web Frameworks](https://sharpskill.dev/th/technologies/rust/interview-questions/web-frameworks.md): 22 คำถาม, Senior - [Database Integration](https://sharpskill.dev/th/technologies/rust/interview-questions/database-integration.md): 20 คำถาม, Senior - [Design Pattern ของ Rust](https://sharpskill.dev/th/technologies/rust/interview-questions/design-patterns.md): 20 คำถาม, Senior --- Source: SharpSkill (https://sharpskill.dev), tech interview preparation for your real stack. HTML version of this page: https://sharpskill.dev/th/technologies/rust/interview-questions/concurrency-basics