Java menggunakan metode forname ()

class Dog {...}

// create object of Class
// to reflect the Dog class
Class a = Class.forName("Dog");
SAMER SAEID