Can Java also see sources defined as .h in C?

Asked 2 years ago, Updated 2 years ago, 21 views

I'm using Eclipse. In C, if you open the header file, you can see how the code is organized, but can you see it in Java?

java

2022-09-22 11:12

1 Answers

Class files in Java contain symbol information together.

This means that you can create sources close to the source in a class file.

Of course, the meta-information for each method is easy to understand.

If you install jdk, you can easily extract it with the basic javap utility.

https://www.javatpoint.com/understanding-javap-tool


2022-09-22 11:12

If you have any answers or tips


© 2024 OneMinuteCode. All rights reserved.