比如类
A{
    private String id;
    
    private String name;    private String value;
 }使用info()时,当info(a) ,a是类A的对象,a的值为
{
    1;
    
    test;    test;
 }
打印的时候都打印出对象的序列号。
我想打印
a{
    1;
    
    test;    test;
 }这样的效果应该怎么实现?