Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我创建了一个 A 类,其中所有方法都是类方法 (+)。另一个 B 类是单例。
我想知道我是否可以检查 A 类 [A someoperation] 是否与 B 类一样,因为只有一个 A 实例存在并且我不需要实例化它。
我怎样才能做到这一点?
调用类方法时,不一定要实例化该类,除非该类方法实际创建了一个类。
此外 - 类方法不会使类成为单例。它只是意味着在类上调用方法而不是类的对象。