• 2022-06-19
    用修饰符_____声明的字段为静态字段。不管包含该静态字段的类生成多少个对象或根本无对象,该字段都只有一个实例,静态字段不能被撤销。
    A: const
    B: static
    C: readonly
    D: protected