This Blog is Under Construction

Tuesday, January 10, 2017

.class file কিভাবে রিড করা যায়?

আমরা যখন একটি জাভার source code কে compile করি, তখন compiler আসলে সেটাকে কিভাবে read করে সেটা
আমরা দেখতে পারব using javap option.


1. code structure যদি দেখতে চাই--
 javap fileName(not extension)
2. binary code দেখতে চাইলে –
 javap -c fileName(not extension)
3. যদি private variable সহ দেখতে চাই--

 javap -private fileName(not extension)

Happy Coding

No comments:

Post a Comment