answersLogoWhite

0

Abstract factory pattern in java

Updated: 8/16/2019
User Avatar

Wiki User

15y ago

Best Answer

One of the main advantages of Abstract Factory Pattern is that it isolates the concrete classes. Main focus of this patter is to depands on abstructtion rather then concreate one

User Avatar

Wiki User

15y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: Abstract factory pattern in java
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What is an abstract factory pattern?

An abstract factory pattern is a creational design pattern which decouples the object creation by providing a group of individual factories by defining an abstract factory class.


What is Abstract-Interface in java?

All interfaces are abstract.


What has the author D S Malik written?

D. S. Malik has written: 'Java Programming' 'Java programming' -- subject(s): Java (Computer program language) 'Fundamentals of abstract algebra' -- subject(s): Abstract Algebra, Algebra, Abstract 'C++ Programming'


Are all java stream class an abstract?

yes


Interface in java?

include all abstract method


When do you declare a method or class abstract in java?

when overriding of a class or a method is necessary, they can be declared as abstract


What do mean by interface in java?

An interface in Java is like an abstract class, but there are no method bodies allowed in it and it has to be declared with the interface keyword. It is Java's way of getting around the Deadly Diamond of Death. Only abstract methods and constants are allowed in it.


Send mobile banking project using java abstract?

ikkk


Is built-in data-type are abstract data-types in java?

All built-in data types are not abstract data types.


What is interface in java?

Interface is collection of abstract methods which has only declaration and no implementation


What kind of constructs can be declared in a Java interface?

Constants and abstract methods. That's it.


How do you achieve abstraction in java?

Abstraction in Java is achieved using interfaces and abstract class. abstract means something which is not complete or concrete but abstraction itself is a great programming concept and allow you to write code which is more flexible to change.