I have a class called Product with some fields. I want to print all the values for a product object.
Class Product{
String code;
String description;
}
Product p = new product();
p.setCode("C");
p.setDescription("desc");
I want to print values of product instances ex
Code:C Description:Desc.
I have around 100 classes with lot of fields in all the classes.What is the best way.
toString()override for just this sort of thing. – Hovercraft Full Of Eels Nov 20 '11 at 4:39toString()" Bah! I go 'indecent' all the way with mytoString()implementations. No net nanny, no censorship, none of this politically correct rubbish, no bounds and no limits. ;) – Andrew Thompson Nov 20 '11 at 7:42