- About Scala
- Documentation
- Code Examples
- Software
- Scala Developers
RE: How to invoke a Java's variable-length argument method in Scala?
Tue, 2011-08-30, 03:45
This works. Thanks.
-----Original Message-----
From: mahmood@notnoop.com [mailto:mahmood@notnoop.com] On Behalf Of Mahmood Ali
Sent: Tuesday, August 30, 2011 10:38 AM
To: Guofeng Zhang
Cc: scala-user (ggroups)
Subject: Re: [scala-user] How to invoke a Java's variable-length argument method in Scala?
Greetings,
You can try:
jgen.setNames(names: _*)
>
> jgen.setNames( names )
>
> causes the compiler complaint that “type mismatch; found: names.type (with
> underlying type Array[N]) required N”
- Mahmood