This page is no longer maintained — Please continue to the home page at www.scala-lang.org

A fully defined trait cannot be instantiated

5 replies
Julien Richard-Foy
Joined: 2011-04-24,
User offline. Last seen 42 years 45 weeks ago.

In the below code:

scala> trait T { def foo = "hello" }
defined trait T

scala> new T
:7: error: trait T is abstract; cannot be instantiated
new T
^

scala> new T {}
res1: java.lang.Object with T = $anon$1@5e159d10

Is this behavior expected? Why do I need to write braces to be able
to
instanciate my trait? Why does the error message say my trait is
abstract?

Regards,
Julien

Sciss
Joined: 2008-12-17,
User offline. Last seen 28 weeks 5 days ago.
Re: A fully defined trait cannot be instantiated

a trait cannot be instantiated, only mixed in. you need a class for instantiation, new T {} creates such an anonymous class.

best, -sciss-

On 24 Apr 2011, at 19:55, Julien Richard-Foy wrote:

> In the below code:
>
> scala> trait T { def foo = "hello" }
> defined trait T
>
> scala> new T
> :7: error: trait T is abstract; cannot be instantiated
> new T
> ^
>
> scala> new T {}
> res1: java.lang.Object with T = $anon$1@5e159d10
>
> Is this behavior expected? Why do I need to write braces to be able
> to
> instanciate my trait? Why does the error message say my trait is
> abstract?
>
> Regards,
> Julien

H-star Development
Joined: 2010-04-14,
User offline. Last seen 2 years 26 weeks ago.
Re: A fully defined trait cannot be instantiated

short answer: everything is working as it should
long answer:
a trait is like an enhances interface in java, it cannot be created
directly. you need to subclass it, which is what you do by adding {}.

Am 24.04.2011 20:55, schrieb Julien Richard-Foy:
> In the below code:
>
> scala> trait T { def foo = "hello" }
> defined trait T
>
> scala> new T
> :7: error: trait T is abstract; cannot be instantiated
> new T
> ^
>
> scala> new T {}
> res1: java.lang.Object with T = $anon$1@5e159d10
>
> Is this behavior expected? Why do I need to write braces to be able
> to
> instanciate my trait? Why does the error message say my trait is
> abstract?
>
> Regards,
> Julien
>

Randall R Schulz
Joined: 2008-12-16,
User offline. Last seen 1 year 29 weeks ago.
Re: A fully defined trait cannot be instantiated

On Sunday April 24 2011, HamsterofDeath wrote:
> short answer: everything is working as it should
> long answer:
> a trait is like an enhances interface in java, it cannot be created
> directly. you need to subclass it, which is what you do by adding {}.

In particular, traits have no constructors
and thus cannot be constructed.

Randall Schulz

Sciss
Joined: 2008-12-17,
User offline. Last seen 28 weeks 5 days ago.
Re: A fully defined trait cannot be instantiated

hmm....

scala> trait T { println( "gaga" )}
defined trait T

scala> new T {}
gaga
res0: java.lang.Object with T = $anon$1@17553743

it seems they have a constructor body (although no constructor arguments). and they do have type parameters!

best, -sciss-

On 24 Apr 2011, at 20:21, Randall R Schulz wrote:

> On Sunday April 24 2011, HamsterofDeath wrote:
>> short answer: everything is working as it should
>> long answer:
>> a trait is like an enhances interface in java, it cannot be created
>> directly. you need to subclass it, which is what you do by adding {}.
>
> In particular, traits have no constructors
> and thus cannot be constructed.
>
>
> Randall Schulz

Randall R Schulz
Joined: 2008-12-16,
User offline. Last seen 1 year 29 weeks ago.
Re: A fully defined trait cannot be instantiated

On Sunday April 24 2011, Sciss wrote:
> hmm....
>
> scala> trait T { println( "gaga" )}
> defined trait T
>
> scala> new T {}
> gaga
> res0: java.lang.Object with T = $anon$1@17553743

You wrote the constructor body (an empty one).
You instantiated a class derived from the trait T, not T itself.

> it seems they have a constructor body (although no constructor
> arguments). and they do have type parameters!
>
> best, -sciss-

Randall Schulz

Copyright © 2012 École Polytechnique Fédérale de Lausanne (EPFL), Lausanne, Switzerland