- About Scala
- Documentation
- Code Examples
- Software
- Scala Developers
Isn't a Float* just an Array[Float]?
Mon, 2009-01-19, 09:28
I'm getting the following error message:
/Users/Ken/NetBeansProjects/ScalaGraph/src/scalagraph/Main.scala:4:
error: type mismatch;
found : Float*
required: Array[Float]
def cash_(numbers:Float*) = NS("cash_", numbers)
This confuses me, because I had thought that a Float* was just an
Array[Float]. Could some kind soul tell me what I've missed?
Thanks,
Newbie Ken
Mon, 2009-01-19, 10:47
#2
Re: Re: Isn't a Float* just an Array[Float]?
On Mon, Jan 19, 2009 at 10:27 AM, Harshad wrote:
> Kenneth McDonald wrote:
>
>> I'm getting the following error message:
>>
>> /Users/Ken/NetBeansProjects/ScalaGraph/src/scalagraph/Main.scala:4:
>> error: type mismatch;
>> found : Float*
>> required: Array[Float]
>> def cash_(numbers:Float*) = NS("cash_", numbers)
>>
>> This confuses me, because I had thought that a Float* was just an
>> Array[Float]. Could some kind soul tell me what I've missed?
>
> Float* is a Seq[Float]
>
Correct. As this causes problems with Java interoperability, we'll
change it to Array[Float] in 2.8.
Cheers
Mon, 2009-01-19, 11:47
#3
Re: Re: Isn't a Float* just an Array[Float]?
On Mon, Jan 19, 2009 at 12:34, martin odersky wrote:
> On Mon, Jan 19, 2009 at 10:27 AM, Harshad wrote:
>>> I'm getting the following error message:
>>>
>>> /Users/Ken/NetBeansProjects/ScalaGraph/src/scalagraph/Main.scala:4:
>>> error: type mismatch;
>>> found : Float*
>>> required: Array[Float]
>>> def cash_(numbers:Float*) = NS("cash_", numbers)
>>>
>>> This confuses me, because I had thought that a Float* was just an
>>> Array[Float]. Could some kind soul tell me what I've missed?
>>
>> Float* is a Seq[Float]
>>
> Correct. As this causes problems with Java interoperability, we'll
> change it to Array[Float] in 2.8.
Not sure it is proper, because
val l = List(1)
f(l: _*)
now works much faster, than it will work as you plan in 2.8.
What are the problems with Java interoperability?
BTW, please, send a link to some page will all changes, planned in 2.8?
S.
Mon, 2009-01-19, 12:37
#4
Re: Re: Isn't a Float* just an Array[Float]?
On Mon, Jan 19, 2009 at 9:34 AM, martin odersky <martin.odersky@epfl.ch> wrote:
That seems highly non-optimal. It changes the runtime characteristics of a lot of code in very undesirable ways (the problem isn't just that it changes them, it's that it makes them worse in many cases where it would be nice to make them worse). Wouldn't it make more sense to add some extra special casing to convert it to an Array[Float] at the boundary?
On Mon, Jan 19, 2009 at 10:27 AM, Harshad <harshad.rj@gmail.com> wrote:
> Kenneth McDonald wrote:
>
>> I'm getting the following error message:
>>
>> /Users/Ken/NetBeansProjects/ScalaGraph/src/scalagraph/Main.scala:4:
>> error: type mismatch;
>> found : Float*
>> required: Array[Float]
>> def cash_(numbers:Float*) = NS("cash_", numbers)
>>
>> This confuses me, because I had thought that a Float* was just an
>> Array[Float]. Could some kind soul tell me what I've missed?
>
> Float* is a Seq[Float]
>
Correct. As this causes problems with Java interoperability, we'll
change it to Array[Float] in 2.8.
That seems highly non-optimal. It changes the runtime characteristics of a lot of code in very undesirable ways (the problem isn't just that it changes them, it's that it makes them worse in many cases where it would be nice to make them worse). Wouldn't it make more sense to add some extra special casing to convert it to an Array[Float] at the boundary?
Mon, 2009-01-19, 18:37
#5
Re: Re: Isn't a Float* just an Array[Float]?
On Mon, Jan 19, 2009 at 11:41 AM, Stepan Koltsov
wrote:
> On Mon, Jan 19, 2009 at 12:34, martin odersky wrote:
>> On Mon, Jan 19, 2009 at 10:27 AM, Harshad wrote:
>>>> I'm getting the following error message:
>>>>
>>>> /Users/Ken/NetBeansProjects/ScalaGraph/src/scalagraph/Main.scala:4:
>>>> error: type mismatch;
>>>> found : Float*
>>>> required: Array[Float]
>>>> def cash_(numbers:Float*) = NS("cash_", numbers)
>>>>
>>>> This confuses me, because I had thought that a Float* was just an
>>>> Array[Float]. Could some kind soul tell me what I've missed?
>>>
>>> Float* is a Seq[Float]
>>>
>> Correct. As this causes problems with Java interoperability, we'll
>> change it to Array[Float] in 2.8.
>
> Not sure it is proper, because
>
> val l = List(1)
> f(l: _*)
>
> now works much faster, than it will work as you plan in 2.8.
>
> What are the problems with Java interoperability?
If you override or implement a Java varargs method, you must use an
array, because that's what Java uses. We could special case or bridge
it, but I'd have preferred to keep things simpler. But your and
David's arguments are quite valid, so it seems we need to do somethign
specisal for Java.
Cheers
Mon, 2009-01-19, 19:07
#6
Re: Re: Isn't a Float* just an Array[Float]?
On Mon, Jan 19, 2009 at 5:22 PM, martin odersky <martin.odersky@epfl.ch> wrote:
Thanks Martin. It's appreciated.
On Mon, Jan 19, 2009 at 11:41 AM, Stepan Koltsov
<stepan.koltsov@gmail.com> wrote:
> On Mon, Jan 19, 2009 at 12:34, martin odersky <martin.odersky@epfl.ch> wrote:
>> On Mon, Jan 19, 2009 at 10:27 AM, Harshad <harshad.rj@gmail.com> wrote:
>>>> I'm getting the following error message:
>>>>
>>>> /Users/Ken/NetBeansProjects/ScalaGraph/src/scalagraph/Main.scala:4:
..scala:4:
>>>> error: type mismatch;
>>>> found : Float*
>>>> required: Array[Float]
>>>> def cash_(numbers:Float*) = NS("cash_", numbers)
>>>>
>>>> This confuses me, because I had thought that a Float* was just an
>>>> Array[Float]. Could some kind soul tell me what I've missed?
>>>
>>> Float* is a Seq[Float]
>>>
>> Correct. As this causes problems with Java interoperability, we'll
>> change it to Array[Float] in 2.8.
>
> Not sure it is proper, because
>
> val l = List(1)
> f(l: _*)
>
> now works much faster, than it will work as you plan in 2.8.
>
> What are the problems with Java interoperability?
If you override or implement a Java varargs method, you must use an
array, because that's what Java uses. We could special case or bridge
it, but I'd have preferred to keep things simpler. But your and
David's arguments are quite valid, so it seems we need to do somethign
specisal for Java.
Thanks Martin. It's appreciated.
Kenneth McDonald wrote:
> I'm getting the following error message:
>
> /Users/Ken/NetBeansProjects/ScalaGraph/src/scalagraph/Main.scala:4:
> error: type mismatch;
> found : Float*
> required: Array[Float]
> def cash_(numbers:Float*) = NS("cash_", numbers)
>
> This confuses me, because I had thought that a Float* was just an
> Array[Float]. Could some kind soul tell me what I've missed?
Float* is a Seq[Float]