By default, out.println(obj) will invoke the toString method on object test, which by default will return the HashBased memory location of the object on which toString is invoked.
In your scenario: A@18fea98
Which is expected output. If you need to print the value of the x attribute, you have following two options 
- Call the getter to get the value of the attribute 
- Override the toStringmethod on A class to return the representation you want
For example:
    class A{
       private int x;
       public A() { 
         x = 0;
       }
       public String toString() {
          return "A:"+x;
       }
   }