在JavaScript中,我们可以使用数组中的每个项作为单独的参数来调用函数。 https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Spread_operator
// Using the spread operator
function myFunction(x, y, z) { }
var args = [0, 1, 2];
myFunction(...args);
// Using the .apply method
function myFunction(x, y, z) { }
var args = [0, 1, 2];
myFunction.apply(null, args);
Java中是否有任何等价物?