Object variable
I am new to java.
If I have a class Adder with two properties num1 & num2
so I do
Adder A=new Adder();
A.setnum1(5);
A.setnum2(3);
Object obj=new Object();
obj=A;
my question is how can I get the value of num1 and num2 from variable obj
thanks in advance

