- About Scala
- Documentation
- Code Examples
- Software
- Scala Developers
:javap and nested classes
Fri, 2011-04-29, 20:56
Hi,
Welcome to Scala version 2.9.0.RC2 (Java HotSpot(TM) 64-Bit Server VM,
Java 1.6.0_24).
Type in expressions to have them evaluated.
Type :help for more information.
scala> object A {
| case class Bippy(x: String)
| }
defined module A
scala> :javap A
Compiled from ""
public final class A$ extends java.lang.Object implements scala.ScalaObject{
public static final A$ MODULE$;
public static {};
public A$();
}
scala> :javap A.Bippy
Failed: Could not find class bytes for 'A.Bippy'
Is this expected? Is there any syntax to refer Bippy for :javap?
Fri, 2011-04-29, 21:17
#2
Re: :javap and nested classes
Am 29.04.2011 21:55, schrieb Grzegorz Kossakowski:
> Hi,
>
> Welcome to Scala version 2.9.0.RC2 (Java HotSpot(TM) 64-Bit Server VM,
> Java 1.6.0_24).
> Type in expressions to have them evaluated.
> Type :help for more information.
>
> scala> object A {
> | case class Bippy(x: String)
> | }
> defined module A
>
> scala> :javap A
> Compiled from ""
> public final class A$ extends java.lang.Object implements scala.ScalaObject{
> public static final A$ MODULE$;
> public static {};
> public A$();
> }
>
> scala> :javap A.Bippy
> Failed: Could not find class bytes for 'A.Bippy'
>
> Is this expected? Is there any syntax to refer Bippy for :javap?
>
Well, you should start out with println(A.getClass) to find the real
name of the class (probably something like $line1.$read$$iw$$iw$A) and
then append $Bippy to that. At least I had success with this before
:javap was disabled on Windows ;-) (at least it tells me so)
Regards,
Roland
Fri, 2011-04-29, 21:17
#3
Re: :javap and nested classes
On 4/29/11 1:08 PM, Grzegorz Kossakowski wrote:
> Thanks Paul and Roland. That's good enough for me but do you want me
> to file a ticket so this doesn't get forgotten?
Please do.
Fri, 2011-04-29, 21:27
#4
Re: :javap and nested classes
This is a guess: try A$.Bippy.
On Fri, Apr 29, 2011 at 2:55 PM, Grzegorz Kossakowski
wrote:
> Hi,
>
> Welcome to Scala version 2.9.0.RC2 (Java HotSpot(TM) 64-Bit Server VM,
> Java 1.6.0_24).
> Type in expressions to have them evaluated.
> Type :help for more information.
>
> scala> object A {
> | case class Bippy(x: String)
> | }
> defined module A
>
> scala> :javap A
> Compiled from ""
> public final class A$ extends java.lang.Object implements scala.ScalaObject{
> public static final A$ MODULE$;
> public static {};
> public A$();
> }
>
> scala> :javap A.Bippy
> Failed: Could not find class bytes for 'A.Bippy'
>
> Is this expected? Is there any syntax to refer Bippy for :javap?
>
> --
> Grzegorz Kossakowski
>
Fri, 2011-04-29, 21:27
#5
Re: :javap and nested classes
2011/4/29 Paul Phillips :
>
> Please do.
Fri, 2011-04-29, 21:37
#6
Re: :javap and nested classes
2011/4/29 Paul Phillips :
> On 4/29/11 12:55 PM, Grzegorz Kossakowski wrote:
>> scala> :javap A.Bippy
>> Failed: Could not find class bytes for 'A.Bippy'
>>
>> Is this expected? Is there any syntax to refer Bippy for :javap?
>
> Is it expected? No, it looks like a bug. I'd be hard pressed to call
> this "syntax", but...
>
> scala> object A { case class Bippy(x: String) }
> defined module A
>
> scala> println(A.Bippy("").getClass)
> class $line1.$read$$iw$$iw$A$Bippy
>
> scala> :javap $line1.$read$$iw$$iw$A$Bippy
Thanks Paul and Roland. That's good enough for me but do you want me
to file a ticket so this doesn't get forgotten?
On 4/29/11 12:55 PM, Grzegorz Kossakowski wrote:
> scala> :javap A.Bippy
> Failed: Could not find class bytes for 'A.Bippy'
>
> Is this expected? Is there any syntax to refer Bippy for :javap?
Is it expected? No, it looks like a bug. I'd be hard pressed to call
this "syntax", but...
scala> object A { case class Bippy(x: String) }
defined module A
scala> println(A.Bippy("").getClass)
class $line1.$read$$iw$$iw$A$Bippy
scala> :javap $line1.$read$$iw$$iw$A$Bippy
Compiled from ""
public class A$Bippy extends java.lang.Object implements
scala.ScalaObject,scala.Product,scala.Serializable{
public scala.collection.Iterator productIterator();
public scala.collection.Iterator productElements();
public java.lang.String x();
public A$Bippy copy(java.lang.String);
public java.lang.String copy$default$1();
public int hashCode();
public java.lang.String toString();
public boolean equals(java.lang.Object);
public java.lang.String productPrefix();
public int productArity();
public java.lang.Object productElement(int);
public boolean canEqual(java.lang.Object);
public A$Bippy(java.lang.String);
}