Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

what is class.forname() and how it will be useful ?

Answer Posted / pradip

class.forname() is used to create an instance of a class on
the basis of the name in string format instead of doing new
Class. One of its use is in cases where you have some
generic (common) logic to call methods of some classes just
on the basis of the names of the class and the method. The
example of reflection shown below uses the logic.

Eg:
performAction(String className, String methodName) {
Class class = Class.forName(className);
MethodUtils.invokeMethod(class.newInstance, methodName,
null);
}

Is This Answer Correct ?    3 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is one third plus one third as a fraction?

994


what is server side caching?

2242


How do you classify Dialog Box?

1185


Break statement can be used as labels in java?

1064


What is the basic concept of java?

1070


I want to print “hello” even before main is executed. How will you acheive that?

1150


What are the topics in advance java?

1034


Tell me a few examples of final classes defined in Java API?

1165


Given a singly linked list, how will you print out its contents in the reverse order? Can you do it with consuming any extra space?

1053


Can list have duplicates in java?

958


Is array synchronized in java?

1086


worst case complexities of Quick sort and Merge sort.

1090


Does java runtime require a license?

1138


Can we sort hashmap in java?

999


Is simpledateformat safe to use in the multithreaded program?

1058