These แปลว่า
These แปลว่า เหล่านี้ พวกนี้ Demonstrative Pronoun Adjective ใกล้ พหูพจน์ This That Those ประโยค ตัวอย่าง
| คำ | แปลว่า | ระยะ | จำนวน | ตัวอย่าง |
|---|---|---|---|---|
| This | นี้ สิ่งนี้ | ใกล้ | เอกพจน์ (1) | This book is good. |
| These | เหล่านี้ พวกนี้ | ใกล้ | พหูพจน์ (2+) | These books are good. |
| That | นั้น สิ่งนั้น | ไกล | เอกพจน์ (1) | That car is fast. |
| Those | เหล่านั้น พวกนั้น | ไกล | พหูพจน์ (2+) | Those cars are fast. |
วิธีใช้ในประโยค
# === These Usage Examples ===
from dataclasses import dataclass
@dataclass
class Example:
english: str
thai: str
usage: str
context: str
examples = [
# Adjective (วางหน้าคำนาม)
Example("These books are interesting.",
"หนังสือเหล่านี้น่าสนใจ",
"Adjective + Noun (books)",
"ชี้หนังสือที่อยู่ใกล้ตัว"),
Example("These shoes are too small.",
"รองเท้าคู่พวกนี้เล็กเกินไป",
"Adjective + Noun (shoes)",
"ลองรองเท้าอยู่ในร้าน"),
Example("These students passed the exam.",
"นักเรียนเหล่านี้สอบผ่าน",
"Adjective + Noun (students)",
"ครูชี้รายชื่อนักเรียน"),
Example("I bought these flowers for you.",
"ฉันซื้อดอกไม้พวกนี้ให้คุณ",
"Adjective + Noun (flowers)",
"ถือดอกไม้อยู่ในมือ"),
# Pronoun (แทนคำนาม)
Example("These are my friends.",
"พวกนี้เป็นเพื่อนของฉัน",
"Pronoun (แทน people)",
"แนะนำเพื่อนให้คนอื่นรู้จัก"),
Example("These are delicious!",
"พวกนี้อร่อย!",
"Pronoun (แทน food)",
"กินอาหารแล้วชม"),
Example("Are these yours?",
"พวกนี้เป็นของคุณไหม?",
"Pronoun (question)",
"ถามเจ้าของสิ่งของ"),
Example("What are these?",
"พวกนี้คืออะไร?",
"Pronoun (question)",
"ถามว่าสิ่งของคืออะไร"),
]
print("=== These Examples ===")
for e in examples:
print(f" EN: {e.english}")
print(f" TH: {e.thai}")
print(f" Usage: {e.usage} | Context: {e.context}")
print()
เปรียบเทียบ This These That Those
# === Demonstrative Comparison ===
@dataclass
class Demonstrative:
word: str
meaning: str
distance: str
number: str
sentence: str
thai: str
demos = [
Demonstrative("This", "นี้", "ใกล้", "เอกพจน์",
"This is my car.", "นี่คือรถของฉัน"),
Demonstrative("These", "เหล่านี้", "ใกล้", "พหูพจน์",
"These are my cars.", "เหล่านี้คือรถของฉัน"),
Demonstrative("That", "นั้น", "ไกล", "เอกพจน์",
"That is her house.", "นั่นคือบ้านของเธอ"),
Demonstrative("Those", "เหล่านั้น", "ไกล", "พหูพจน์",
"Those are her houses.", "เหล่านั้นคือบ้านของเธอ"),
]
print("=== Demonstrative Pronouns ===")
for d in demos:
print(f" [{d.word}] แปลว่า: {d.meaning}")
print(f" Distance: {d.distance} | Number: {d.number}")
print(f" Example: {d.sentence}")
print(f" Thai: {d.thai}")
# Common mistakes
mistakes = [
("These is my book.", "These are my books.", "These ใช้กับ are (พหูพจน์) ไม่ใช่ is"),
("These book is good.", "These books are good.", "These ตามด้วยคำนามพหูพจน์ (books ไม่ใช่ book)"),
("I like these.", "I like these cookies.", "ถ้าอยากระบุว่าอะไร ใส่คำนามตามหลัง"),
("These is beautiful.", "These are beautiful.", "These + are เสมอ ไม่ใช่ is"),
]
print(f"\n\nCommon Mistakes:")
for wrong, correct, reason in mistakes:
print(f" [Wrong] {wrong}")
print(f" [Correct] {correct}")
print(f" [Why] {reason}")
สถานการณ์จริง
# === Real-life Situations ===
@dataclass
class Situation:
place: str
dialogue: str
thai: str
note: str
situations = [
Situation("ร้านอาหาร",
"Waiter: What would you like? \nYou: I'll have these spring rolls.",
"ฉันขอปอเปี๊ยะพวกนี้",
"ชี้เมนูหรือจานอาหารที่อยู่ตรงหน้า"),
Situation("ห้างสรรพสินค้า",
"You: How much are these shoes? \nSeller: These are 1,500 baht.",
"รองเท้าพวกนี้ราคาเท่าไหร่? — พวกนี้ 1,500 บาท",
"ถือหรือชี้รองเท้าที่อยู่ใกล้"),
Situation("ที่ทำงาน",
"Boss: Please review these documents. \nYou: Sure, I'll check these today.",
"กรุณาตรวจเอกสารเหล่านี้ — ได้ครับ ผมจะตรวจพวกนี้วันนี้",
"เอกสารอยู่บนโต๊ะหรือในมือ"),
Situation("โรงเรียน",
"Teacher: These students will present today. \nStudents: We're ready!",
"นักเรียนเหล่านี้จะนำเสนอวันนี้",
"ชี้กลุ่มนักเรียนที่อยู่ในห้อง"),
Situation("ซูเปอร์มาร์เก็ต",
"You: Are these oranges fresh? \nSeller: Yes, these arrived this morning.",
"ส้มพวกนี้สดีไหม? — ใช่ พวกนี้มาถึงเช้านี้",
"ชี้ส้มที่อยู่บนชั้นวางใกล้ตัว"),
]
print("=== Real-life Situations ===")
for s in situations:
print(f" [{s.place}]")
print(f" {s.dialogue}")
print(f" Thai: {s.thai}")
print(f" Note: {s.note}")
# Memory tricks
tricks = {
"These = S = cloSe (ใกล้)": "These มีตัว S เหมือน Close หมายถึงใกล้",
"Those = O = Over there (ไกล)": "Those มีตัว O เหมือน Over there หมายถึงไกล",
"These/Those = พหูพจน์": "ลงท้ายด้วย -ese/-ose เป็นพหูพจน์ (หลายชิ้น)",
"This/That = เอกพจน์": "สั้นกว่า เป็นเอกพจน์ (ชิ้นเดียว)",
"ฝึกชี้ของ": "ฝึกทุกวัน ชี้ของรอบตัวพูด These are... Those are...",
}
print(f"\n\nMemory Tricks:")
for k, v in tricks.items():
print(f" [{k}]: {v}")
เคล็ดลับ
- ใกล้: These ใช้กับสิ่งที่อยู่ใกล้ตัวเสมอ
- พหูพจน์: These ตามด้วยคำนามพหูพจน์ (เติม s) These books ไม่ใช่ These book
- are: These ใช้กับ are เสมอ ไม่ใช่ is (These are ไม่ใช่ These is)
- ฝึกพูด: ฝึกชี้ของรอบตัวทุกวัน These are my keys, These are my shoes
- จำคู่: จำเป็นคู่ This/These (ใกล้) That/Those (ไกล)
การนำความรู้ไปประยุกต์ใช้งานจริง
แหล่งเรียนรู้ที่แนะนำ ได้แก่ Official Documentation ที่อัพเดทล่าสุดเสมอ Online Course จาก Coursera Udemy edX ช่อง YouTube คุณภาพทั้งไทยและอังกฤษ และ Community อย่าง Discord Reddit Stack Overflow ที่ช่วยแลกเปลี่ยนประสบการณ์กับนักพัฒนาทั่วโลก
เปรียบเทียบข้อดีและข้อเสีย
จากตารางเปรียบเทียบจะเห็นว่าข้อดีมีมากกว่าข้อเสียอย่างชัดเจน โดยเฉพาะในแง่ของประสิทธิภาพและความสามารถในการ Scale สำหรับข้อเสียส่วนใหญ่สามารถแก้ไขได้ด้วยการเรียนรู้อย่างเป็นระบบและวางแผนทรัพยากรให้เหมาะสม
These แปลว่าอะไร
เหล่านี้ พวกนี้ สิ่งเหล่านี้ Demonstrative ใกล้ พหูพจน์ This พหูพจน์ Pronoun Adjective คำนามพหูพจน์ books friends
These กับ Those ต่างกันอย่างไร
These ใกล้ เหล่านี้ Those ไกล เหล่านั้น พหูพจน์ทั้งคู่ This ใกล้ เอกพจน์ That ไกล เอกพจน์ S Close O Over there
ใช้ในประโยคอย่างไร
Adjective หน้าคำนาม These books students shoes Pronoun แทนคำนาม These are mine delicious แนะนำ These are my parents คำถาม Are these What are these
มีเทคนิคจำง่ายอย่างไร
These S Close ใกล้ Those O Over there ไกล This เอกพจน์ These พหูพจน์ ฝึกชี้ของทุกวัน pens phone books shoes อัตโนมัติ
สรุป
These แปลว่า เหล่านี้ พวกนี้ Demonstrative ใกล้ พหูพจน์ This That Those Pronoun Adjective ประโยค ตัวอย่าง สถานการณ์จริง
อ่านเพิ่มเติม: สอนเทรด Forex | XM Signal | IT Hardware | อาชีพ IT
