function setAgument(a:int,...rest):void
{
  for(var i:int=0;i<rest.length;i++){
    trace(rest[i]);
  }
}
setAgument(5,"1","fs",3,4);//1 fs 3 4

相关文章:

  • 2021-10-07
  • 2022-02-07
  • 2021-10-16
  • 2021-11-10
  • 2021-08-23
  • 2021-09-24
猜你喜欢
  • 2021-05-22
  • 2021-08-24
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-08-07
  • 2021-10-08
相关资源
相似解决方案