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.
我有一个名为 Person 的对象,我需要由其他类或对象决定值,其中一个是对象人是男孩还是女孩,这两个类将返回变量,例如平均体重。我如何做到这一点?
你需要给你的“人”几个属性
要么bool isBoy_string(Enum?) Gender
bool isBoy
string(Enum?) Gender
以及float bodyWeight或类似的。
float bodyWeight
然后你需要制作一个list人,并得到Average每个人的bodyWeight
list
Average
bodyWeight
您还可以搜索此列表以查找where此人isBoy或gender匹配项boy或girl
where
isBoy
gender
boy
girl