摘要: from typing import TypeVar, Generic T = TypeVar('T') class Stack(Generic[T]): def __init__(self) -> None: # Create an empty list with items of type T 阅读全文
posted @ 2020-05-27 14:27 Mars.wang 阅读(6310) 评论(0) 推荐(0) 编辑