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.
例如,我们可以通过条件语句将许多对象作为方法参数的一个参数传递吗
二级:一级和二级
传递方法是
public void passe(one||two) { }
您不能按照您描述的方式对方法使用条件参数。
如果两个参数的类型相同(或属于继承链),您可以简单地将值有条件地传递给方法。
或者,您可以使用可选参数。
public void passe(typex one = someXdefualt, typey two = someYdefualt) { }