Skip to main content

All Questions

Tagged with
0 votes
1 answer
451 views

Understanding javap output

I have a very simple class: package MyDev; public class Point3D { public Point3D(){x = 0; y = 0;z = 0;} public float x, y, z; public Point3D( float X, float Y, float Z ) { x = ...
Flot2011's user avatar
  • 4,621
1 vote
3 answers
535 views

Relationship between Inner and Outer Class in Java?

This is my Book.java code public class Book { private int pageNumber; private class BookReader{ public int getPage(){ return pageNumber; } } } When I ...
Ankur Anand's user avatar
  • 3,896
5 votes
2 answers
825 views

Javap Asciz Strings

Little question about the output generated from the javap command regarding the constant pool. When javap prints the pool it defines string constants as Asciz strings, which I understand means null ...
Jivings's user avatar
  • 23.1k