I'm new to this community so, if I'm violating any t&c of our community by asking this question in wrong section, then I'm sorry. I've been searching answers for the above question for quite a while but none of the results were relevant.
- I just wanna know that in java we were able to explore a java class methods by using javap, how to do the same in c++ ???
- Suppose, I wanted to see all the methods of String class in java, I would have used javap by which all its methods, their return type, their number of arguments & their data type etc, are displayed.
- How to do the same in c++ ???
- Also is there a command line way to explore what all packages & classes are there in a particular package in java language ???
- Suppose
java** java.awt.*or any such method to know all the packages & classes inside a particular package.