ข้ามไปยังเนื้อหา

Typing & Protocols

ใน TypeScript interface กำหนด contract ออบเจ็กต์ใดก็ตามที่มี shape ที่ถูกต้องก็ตรงตาม interface นั้น — นี่เรียกว่า structural typing Protocol ของ Python (จากโมดูล typing) เป็นแนวคิดเดียวกันทุกประการ: คลาสหนึ่งตรงตาม Protocol ถ้ามีเมธอดและ attributes ที่ถูกต้อง โดยไม่สนว่า inherit มาจากอะไร

TypeScript
// TypeScript structural interface
interface Drawable {
draw(): string;
}
function render(shape: Drawable): string {
return shape.draw();
}
class Circle {
draw() { return "Drawing Circle"; }
}
class Square {
draw() { return "Drawing Square"; }
}
console.log(render(new Circle())); // "Drawing Circle"
console.log(render(new Square())); // "Drawing Square"
Python
from typing import Protocol
class Drawable(Protocol):
def draw(self) -> str: ...
def render(shape: Drawable) -> str:
return shape.draw()
class Circle:
def draw(self) -> str:
return "Drawing Circle"
class Square:
def draw(self) -> str:
return "Drawing Square"
print(render(Circle())) # Drawing Circle
print(render(Square())) # Drawing Square

สังเกตว่า Circle กับ Square ไม่ได้ inherit จาก Drawable เลย ทั้งคู่แค่มี method draw() ที่ signature ตรงเท่านั้น ซึ่งพอแล้ว ส่วนงานจับข้อผิดพลาดเป็นหน้าที่ของ static analysis tool อย่าง mypy และ pyright

TypeScript generics แมปโดยตรงกับ TypeVar + Generic ของ Python

TypeScript
// TypeScript generic class
class Stack<T> {
private items: T[] = [];
push(item: T): void { this.items.push(item); }
pop(): T { return this.items.pop()!; }
peek(): T { return this.items[this.items.length - 1]; }
}
const stack = new Stack<number>();
stack.push(1);
stack.push(2);
console.log(stack.pop()); // 2
Python
from typing import TypeVar, Generic
T = TypeVar('T')
class Stack(Generic[T]):
def __init__(self) -> None:
self._items: list[T] = []
def push(self, item: T) -> None:
self._items.append(item)
def pop(self) -> T:
return self._items.pop()
def peek(self) -> T:
return self._items[-1]
stack: Stack[int] = Stack()
stack.push(1)
stack.push(2)
print(stack.pop()) # 2

ตั้งแต่ Python 3.9+ คุณสามารถเขียน list[T] ได้โดยตรงในคลาสโดยไม่ต้อง import List จาก typing และตั้งแต่ 3.12 มี syntax type T = ... เพิ่มเข้ามา แต่ TypeVar ยังเป็นรูปแบบที่ compatible กว้างที่สุด

TypedDict เป็น interface ของ TypeScript ที่อธิบาย plain object (ไม่มีเมธอด) เหมาะมากสำหรับข้อมูลแบบ JSON

TypeScript
// TypeScript interface for a plain object
interface UserRecord {
name: string;
age: number;
email?: string; // optional key
}
const user: UserRecord = { name: "Alice", age: 30 };
console.log(user.name);
Python
from typing import TypedDict, NotRequired
class UserRecord(TypedDict):
name: str
age: int
email: NotRequired[str] # optional key
user: UserRecord = {"name": "Alice", "age": 30}
print(user["name"]) # Alice
# mypy/pyright จะจับ key ที่ขาดหาย:
# bad: UserRecord = {"name": "Alice"} # age missing

TypeScript ใช้ string | null | undefined สำหรับ nullable types Python ใช้ Optional[T] (ซึ่งคือ T | None) หรือ union syntax สมัยใหม่ T | None (Python 3.10+)

TypeScript
// TypeScript
function greet(name: string | null): string {
if (name === null) return "Hello, stranger!";
return `Hello, ${name}!`;
}
// Modern TS nullable shorthand
function greet2(name?: string): string {
return name ? `Hello, ${name}!` : "Hello, stranger!";
}
Python
from typing import Optional
# Optional[str] คือ str | None
def greet(name: Optional[str] = None) -> str:
if name is None:
return "Hello, stranger!"
return f"Hello, {name}!"
# Python 3.10+ union syntax
def greet_modern(name: str | None = None) -> str:
return f"Hello, {name}!" if name else "Hello, stranger!"
print(greet()) # Hello, stranger!
print(greet("Alice")) # Hello, Alice!
from typing import Protocol, TypeVar, Generic, TypedDict, Optional
# Protocol — structural typing
class Serializable(Protocol):
def to_json(self) -> str: ...
class User:
def __init__(self, name: str, age: int) -> None:
self.name = name
self.age = age
def to_json(self) -> str:
return f'{{"name": "{self.name}", "age": {self.age}}}'
class Product:
def __init__(self, title: str) -> None:
self.title = title
def to_json(self) -> str:
return f'{{"title": "{self.title}"}}'
def export_data(item: Serializable) -> str:
return item.to_json()
print(export_data(User("Alice", 30)))
print(export_data(Product("Widget")))
# Generic Stack
T = TypeVar('T')
class Stack(Generic[T]):
def __init__(self) -> None:
self._items: list[T] = []
def push(self, item: T) -> None:
self._items.append(item)
def pop(self) -> T:
return self._items.pop()
s: Stack[str] = Stack()
s.push("hello")
s.push("world")
print(s.pop())
# TypedDict
class Config(TypedDict):
host: str
port: int
cfg: Config = {"host": "localhost", "port": 8080}
print(f"Connecting to {cfg['host']}:{cfg['port']}")
# Optional
def find_user(user_id: int) -> Optional[str]:
db = {1: "Alice", 2: "Bob"}
return db.get(user_id)
print(find_user(1)) # Alice
print(find_user(99)) # None
คลาส Python ใดที่ทำหน้าที่เทียบเท่ากับ TypeScript structural interface โดยตรง?
`Optional[str]` ในโมดูล typing ของ Python หมายความว่าอะไร?
เพื่อให้ Protocol ของ Python ทำงานกับ `isinstance()` ที่ runtime ต้องใช้ decorator ใด?
class ต้อง inherit จาก `Protocol` ตรง ๆ ไหม ถึงจะนับว่าเข้าเกณฑ์?