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.
我想知道在静态类中是否所有的方法和数据成员都应该是静态的,或者我可以找到一个非静态成员吗?
从谷歌返回的第一个链接
静态类的主要特点是: 它们只包含静态成员。
静态类的主要特点是:
所有成员都是静态的。当然是,因为如果你不能从那个类中实例化一个对象,为什么会有任何非静态成员呢?
您可以拥有一个具有静态和非静态方法的非静态类,但静态类只能具有静态方法。