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.
公共人员(字符串名称,整数年龄,布尔 isFemale)
在我正在编写的程序中,我必须跟踪创建了多少 Person 对象。我还必须为所有人员的总年龄以及其中有多少是女性制作静态变量。如果有人至少可以为我指出正确的方向,那就太棒了,我不知道如何执行此步骤。
您必须在类中添加一些static字段,当创建新的 Person 对象时,这些字段将在构造函数中更新。static字段对于同一类的所有实例都是通用的。
static
例如:
private static personCount; private static femaleCount; public Person (String name, int age, boolean isFemale){ personCount++ ... }
用缺少的代码填充...用于计算女性。