Rahul Agerahulage.hashnode.dev·Jan 7, 2023Exploring the Reflection API in JavaThe Java Reflection API is a powerful tool that allows developers to examine and manipulate the runtime behavior of Java code. It enables you to access and modify the attributes of classes, interfaces, fields, and methods at runtime, making it a valu...36 readsJava reflection
Udaysinhknowthatstuff.hashnode.dev·Jul 25, 2022Java reflection - dynamic class loading with examplehttps://examples.javacodegeeks.com/core-java/dynamic-class-loading-example/ What is dynamic class loading? Dynamic Java Class allows the Java platform with the ability to install software components at run-time where you can load your classes in a la...397 readsexample