永恒的蓝色梦想 发表于 2020-6-30 09:20:52

static class

本帖最后由 永恒的蓝色梦想 于 2020-6-30 18:18 编辑

简介:
模仿 C# 的静态类。
经由这个装饰器装饰的类将无法被继承,且无法实例化,而且无法包含普通方法。

示例:>>> @staticclass
class p:
        ...

>>> p()
Traceback (most recent call last):
File "<pyshell#7>", line 1, in <module>
    p()
File "<pyshell#1>", line 12, in __new__
    raise TypeError("Can't instantiate abstract class "+cls.__name__)
TypeError: Can't instantiate abstract class p

>>> class b(p):
        pass

Traceback (most recent call last):
File "<pyshell#10>", line 1, in <module>
    class b(p):
File "<pyshell#1>", line 8, in __init_subclass__
    raise TypeError("type '"+cls.__name__ +
TypeError: type 'p' is not an acceptable base type

>>> @staticclass
class f:
        def function(self):
                return 0

       
Traceback (most recent call last):
File "<pyshell#15>", line 2, in <module>
    class f:
File "<pyshell#1>", line 4, in staticclass
    raise TypeError(
TypeError: Can't define non-static members in static class f

>>> @staticclass
class n:
        @staticmethod
        def fads():
                return 6
       
        @classmethod
        def ewfds(cls):
                return 8
       
        list=[]
       
        tuple=()
       
        string=''
       
        set=set()
       
        dict={}
       
        class t:
                pass

       
>>> n.fads
<function n.fads at 0x000001583E9A89D0>
>>> n.ewfds
<bound method n.ewfds of <class '__main__.n'>>
>>> n.list
[]
>>> n.tuple
()
>>> n.string
''
>>> n.set
set()
>>> n.dict
{}
>>> n.t
<class '__main__.n.t'>

代码:function = (lambda: None).__class__


def staticclass(cls: type, / ) -> type:
    for i in vars(cls).values():
      if i.__class__ is function:
            raise TypeError(
                "Can't define non-static members in static class "+cls.__name__)

    def __init_subclass__(ncls: type, / ) -> None:
      raise TypeError("type '"+cls.__name__ +
                        "' is not an acceptable base type")

    def __new__(ncls: type, / , *args, **kwargs) -> None:
      raise TypeError("Can't instantiate abstract class "+cls.__name__)

    cls.__init_subclass__ = classmethod(__init_subclass__)
    cls.__new__ = staticmethod(__new__)

    return cls

永恒的蓝色梦想 发表于 2020-6-30 09:39:29

其实经过装饰的类还可以用作命名空间{:10_256:}

yhhpf 发表于 2020-6-30 10:03:46

额,新名词‘静态类’首次接触,无法被继承,且无法实例化,而且无法包含普通方法?
那具体有什么可以去做使用的地方呢?
给某些数据赋值初始值?如果代码量躲起来,某些数据值可能在变动,平常是通过自己赋值初始值,但如果需要赋值的数据很多时可以用静态类?

永恒的蓝色梦想 发表于 2020-6-30 10:11:05

yhhpf 发表于 2020-6-30 10:03
额,新名词‘静态类’首次接触,无法被继承,且无法实例化,而且无法包含普通方法?
那具体有什么可以去做 ...

WOC 我鱼币设错了{:10_247:}

主要是为了实现类似命名空间的一个作用。

yhhpf 发表于 2020-6-30 10:19:55

永恒的蓝色梦想 发表于 2020-6-30 10:11
WOC 我鱼币设错了

主要是为了实现类似命名空间的一个作用。

哇,还有鱼币奖励,我赚到了{:10_254:}

我先百度下命名空间,静态类哈哈,了解下先~
页: [1]
查看完整版本: static class