Runtime vs. Compile time

前端 未结 27 1610
后悔当初
后悔当初 2020-11-22 06:50

What is the difference between run-time and compile-time?

27条回答
  •  予麋鹿
    予麋鹿 (楼主)
    2020-11-22 07:27

    In simply word difference b/w Compile time & Run time.

    compile time:Developer writes the program in .java format & converts in to the Bytecode which is a class file,during this compilation any error occurs can be defined as compile time error.

    Run time:The generated .class file is use by the application for its additional functionality & the logic turns out be wrong and throws an error which is a run time error

提交回复
热议问题