I have one simple question, Where we need the count of the variables in an Object:
class cot{ int I; int j; int k; }
We need the count of the variables (3) for each iteration on cot[], we have size() which we can use for getting size of Array List of Object. But how to find the count of the Variables for each Iteration on the Object.
We know it is three , But need for dynamic Objects.