Jdk

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • MyrinNew
    Senior Member
    • Feb 2024
    • 5168

    #1

    Jdk

    what is JDK?

    JDK is a complete software package used to develop java application.

    It contains tools to write, compile, debug, and run java programs.


    when is JDK used?

    => when you are writing Java code.

    => when you are compiling Java program.

    => During Development time.


    How JDK used?

    you write .java file

    use javac(compiler from JDK) to convert it to .class file

    Run the program using java command


    Example

    javac Hello.java

    java Hello




    More...
Working...