码迷,mamicode.com
首页 > 编程语言 > 详细

python泛型

时间:2020-05-27 15:47:01      阅读:90      评论:0      收藏:0      [点我收藏+]

标签:items   init   end   style   eva   self   empty   none   bsp   

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
        self.items: List[T] = []

    def push(self, item: T) -> None:
        self.items.append(item)

    def pop(self) -> T:
        return self.items.pop()

    def empty(self) -> bool:
        return not self.items

 

python泛型

标签:items   init   end   style   eva   self   empty   none   bsp   

原文地址:https://www.cnblogs.com/wangbin2188/p/12972854.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!