runtime
-
ReflectionStaticPL/JAVA 2019. 8. 27. 08:40
1. Overview It stands for modifying or examing the behavior of methods, classes, and interfaces at runtime. java.lang.reflect packages required classes for reflection It gives us information about the class to which an object belongs and also the methods of that class which can be executed by using the object. Being able to invoke methods at runtime irrespective of the access specifier used with..
-
JDK, JRI, JVM, and ClassloaderStaticPL/JAVA 2019. 8. 23. 06:32
1. Overview The Java Development Kit (JDK) is a software development environment used for developing Java applications and applets. It includes the Java Runtime Environment (JRE), an interpreter/loader (Java), a compiler (javac), an archiver (jar), a documentation generator (Javadoc) and other tools needed in Java development. 2. Java Development Kit (JDK) It is a kit that provides the environme..