What is the use of collections in java? How it is
implemented in real time applications?

Answer Posted / pradip mishra(b-tech it)

interfaces, implementations, and algorithms — that comprise
the Java Collections Framework.

General-purpose implementations are the most commonly used
implementations, designed for everyday use. They are
summarized in the table below.
Special-purpose implementations are designed for use in
special situations and display nonstandard performance
characteristics, usage restrictions, or behavior.
Concurrent implementations are designed to support high
concurrency, typically at the expense of single-threaded
performance. These implementations are part of the
java.util.concurrent package.
Wrapper implementations are used in combination with other
types of implementations, often the general-purpose ones,
to provide added or restricted functionality.
Convenience implementations are mini-implementations,
typically made available via static factory methods, that
provide convenient, efficient alternatives to general-
purpose implementations for special collections (for
example, singleton sets).
Abstract implementations are skeletal implementations that
facilitate the construction of custom implementations —
described later in the Custom Collection Implementations
section. An advanced topic, it's not particularly
difficult, but relatively few people will need to do it.

Is This Answer Correct ?    2 Yes 6 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

How do you create a bulleted list?

664


What is difference between hashset and hashmap?

662


What is visibility mode?

624


What is the use of toarray () in java?

642


What is a singleton class in Java?

602






What are benefits of java?

673


What is a java object and java application?

668


Give me an example of array and linked list? Where they can be used?

647


What is thread pool? How can we create thread pool in java?

716


How do you download stubs from Remote place?

1441


Which class cannot be a subclass in java?

625


Why is java called java?

635


What are keywords in programming?

659


what are the states associated in the thread? : Java thread

693


What does the @override annotation do?

642