Tuesday 31 October 2017

Factory Method in Java

Factory Method in Java

A factory method is one whose return type is similar to the class name in which class is present. The purpose of factory method is to create an object without using new operator.
Factory Method

Rules for writing factory method

  1. The return type of the factory method must be similar to class name in which class it presents.
  2. Every factory method in java is static.
  3. The access specifier of the factory method must be public.

No comments:

Post a Comment

Data Conversion in java

Data Conversion In java programming we have six data conversion technique they are:. 1 Converting numeric string type data into numeri...