- About Scala
- Documentation
- Code Examples
- Software
- Scala Developers
Abstract Types vs. Generics
Sun, 2009-08-16, 20:18
Other than using abstract types as an alias mechanism, when would you use them over generics?
class Foo[T] {
}
vs.
class Foo {
type T
}
class Foo[T] {
}
vs.
class Foo {
type T
}
Mon, 2009-08-17, 11:37
#2
Re: Abstract Types vs. Generics
For one example, have a read of the paper referenced in the 'Scala API for remote monitoring and control' news item on thehttp://scala-lang.org front page.
2009/8/16 David Copeland <davec@naildrivin5.com>
--
Rob, Lafros.com
2009/8/16 David Copeland <davec@naildrivin5.com>
Other than using abstract types as an alias mechanism, when would you use them over generics?
class Foo[T] {
}
vs.
class Foo {
type T
}
--
Rob, Lafros.com
Mon, 2009-08-17, 13:37
#3
Re: Abstract Types vs. Generics
Basically, you have to use a type member (as opposed to parameter) where you want the type to be constrained by an inner class/trait.
2009/8/17 Rob Dickens <arctic.bob@googlemail.com>
--
Rob, Lafros.com
2009/8/17 Rob Dickens <arctic.bob@googlemail.com>
For one example, have a read of the paper referenced in the 'Scala API for remote monitoring and control' news item on the http://scala-lang.org front page.
2009/8/16 David Copeland <davec@naildrivin5.com>Other than using abstract types as an alias mechanism, when would you use them over generics?
class Foo[T] {
}
vs.
class Foo {
type T
}
--
Rob, Lafros.com
--
Rob, Lafros.com
Tue, 2009-08-18, 18:57
#4
Re: Abstract Types vs. Generics
Had I asked this on stackoverflow (maybe I should next time?), this would be the answer I would've marked as "accepted".
I'd love a concrete example(*), but I think I could come up with one on my own.
Dave
(*) for me, a concrete example must be in a concrete/non-abstract domain (which, sadly, mathematics is not :)
On Sun, Aug 16, 2009 at 4:38 PM, Matt Hellige <matt@immute.net> wrote:
I'd love a concrete example(*), but I think I could come up with one on my own.
Dave
(*) for me, a concrete example must be in a concrete/non-abstract domain (which, sadly, mathematics is not :)
On Sun, Aug 16, 2009 at 4:38 PM, Matt Hellige <matt@immute.net> wrote:
On Sun, Aug 16, 2009 at 2:18 PM, David Copeland<davec@naildrivin5.com> wrote:
> Other than using abstract types as an alias mechanism, when would you use
> them over generics?
>
Consider using an abstract type when most of the client code doesn't
care what the parameter is. In other words, if most of the sites look
like:
blah[T](foo: Foo[T])
leaving the variable unbound and immediately exposing it to the
caller, it might be simpler to make T an abstract type.
Matt
On Sun, Aug 16, 2009 at 2:18 PM, David Copeland wrote:
> Other than using abstract types as an alias mechanism, when would you use
> them over generics?
>
Consider using an abstract type when most of the client code doesn't
care what the parameter is. In other words, if most of the sites look
like:
blah[T](foo: Foo[T])
leaving the variable unbound and immediately exposing it to the
caller, it might be simpler to make T an abstract type.
Matt