- About Scala
- Documentation
- Code Examples
- Software
- Scala Developers
a question about classof[Foo]
Fri, 2009-09-11, 10:01
if i define an object
object Foo
and i use classof[Foo]
and there is a compile error: not found: type
Foo
why? isnt the compile create a class Foo for the
standalone object?
Fri, 2009-09-11, 10:27
#2
Re: a question about classof[Foo]
2009/9/11 Caesar You <Caesar.Jr@hotmail.com>
if i define an object object Foo and i use classof[Foo]
I'd suggest:
object Foo
val v = Foo.getClass
and there is a compile error: not found: type Foo why? isnt the compile create a class Foo for the standalone object?
--
Viktor Klang
Blog: klangism.blogspot.com
Twttr: viktorklang
Lift Committer - liftweb.com
AKKA Committer - akkasource.org
Cassidy - github.com/viktorklang/Cassidy.git
SoftPub founder: http://groups.google.com/group/softpub
Sat, 2009-09-12, 18:17
#3
Re: a question about classof[Foo]
Also note that if you need to define a method that takes the an object of your singleton instance type, you do so with:
def useFoo(foo : Foo.type)
The issue here is classOf expects a type in the [], and there is no way (AFAIK) to specify the type of Foo such that classOf can satisfactorily figure out the class is Foo$ (i.e. classOf[Foo.type] does not work). So stick with Victor's suggetion of Foo.getClass if you need the class object for some reason.
- Josh
2009/9/11 Caesar You <Caesar.Jr@hotmail.com>
def useFoo(foo : Foo.type)
The issue here is classOf expects a type in the [], and there is no way (AFAIK) to specify the type of Foo such that classOf can satisfactorily figure out the class is Foo$ (i.e. classOf[Foo.type] does not work). So stick with Victor's suggetion of Foo.getClass if you need the class object for some reason.
- Josh
2009/9/11 Caesar You <Caesar.Jr@hotmail.com>
if i define an object object Foo and i use classof[Foo] and there is a compile error: not found: type Foo why? isnt the compile create a class Foo for the standalone object?
Are you using the REPL for this?
On Friday, September 11, 2009, Caesar You wrote:
>
>
>
>
>
> if i define an object
>
> object Foo
>
> and i use classof[Foo]
>
> and there is a compile error: not found: type
> Foo
>
> why? isnt the compile create a class Foo for the
> standalone object?
>