Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I want to create a Program that takes another Java program as input and should return number of methods in the class and also number of attributes.

share|improve this question

3 Answers

Sample Code:

public class Test {

    public static void main(String[] args) {
        System.out.println(Test.class.getMethods().length);
        System.out.println(Test.class.getFields().length);
    }

}
share|improve this answer
5  
Best not to answer homework questions with the actual code, but rather (as Walkerneo did) with a pointer to how to proceed to build one's own solution. – T.J. Crowder Mar 28 '12 at 7:48

This sounds like you are asking us a homework question. Look at the Reflection API, in package java.lang.reflect and the Class class. Then when you have some code you want us to help with, post again.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.