Article Categories
- All Categories
-
Data Structure
-
Networking
-
RDBMS
-
Operating System
-
Java
-
MS Excel
-
iOS
-
HTML
-
CSS
-
Android
-
Python
-
C Programming
-
C++
-
C#
-
MongoDB
-
MySQL
-
Javascript
-
PHP
-
Economics & Finance
Java Articles
Page 3 of 450
How do I search a list in Java?
Java Streams (Java 8+) can be used to search for an item within a list by filtering elements based on a condition. The filter() method applies the search criteria, and findAny() returns the first matching element or null if no match is found. Syntax Student result = list.stream() .filter(s -> s.getRollNo() == rollNo) .findAny() .orElse(null); This filters the list for a student with the matching roll number. findAny() returns an Optional, and orElse(null) returns null if no match is found. Example ...
Read MoreHow can we convert list to Set in Java?
A Java List can be converted to a Set to eliminate duplicate entries. The resulting Set will contain only unique values. There are three common ways to perform this conversion − Method 1: Using Set Constructor Pass the list directly to the HashSet constructor − Set set = new HashSet(list); Method 2: Using addAll() Create an empty set and use addAll() to add all elements from the list − Set set = new HashSet(); set.addAll(list); Method 3: Using Streams (Java 8+) Use the Stream API to collect list ...
Read MoreHow to copy a list to another list in Java?
A List of elements can be copied to another List in Java using multiple approaches. All methods create a shallow copy − the new list contains references to the same objects as the original. Way 1: Constructor Pass the source list to the ArrayList constructor − List copy = new ArrayList(list); Way 2: addAll() Create an empty list and use addAll() to add all elements from the source − List copy = new ArrayList(); copy.addAll(list); Way 3: Collections.copy() Use Collections.copy() to copy elements into an existing destination list. ...
Read MoreCan we convert a List to Set and back in Java?
Yes, Java allows easy conversion between List and Set using their constructors. Converting a List to a Set eliminates duplicate entries, and converting a Set back to a List gives a list with only unique values. List to Set Pass the list to the HashSet constructor. Duplicates are automatically removed − Set set = new HashSet(list); Set to List Pass the set to the ArrayList constructor to get a modifiable list − List list = new ArrayList(set); Example The following example demonstrates converting a List to a Set ...
Read MoreCan we convert an array to list and back in Java?
Yes, Java provides built-in methods to convert between arrays and lists. Use Arrays.asList() to convert an array to a list, and list.toArray() to convert a list back to an array. Array to List Use Arrays.asList() to convert an array into a list. Wrap it in an ArrayList constructor to get a modifiable list − List list = new ArrayList(Arrays.asList(array)); List to Array The List interface provides two toArray() methods − 1. Without parameter − Returns an Object[] array. Object[] items = list.toArray(); 2. With typed array − Returns ...
Read MoreHow to convert a Java list to a set?
A Java List can be converted to a Set to eliminate duplicate entries. The resulting Set will contain only unique values. There are three common ways to perform this conversion − Method 1: Using Set Constructor Pass the list directly to the HashSet constructor − Set set = new HashSet(list); Method 2: Using addAll() Create an empty set and use addAll() to add all elements from the list − Set set = new HashSet(); set.addAll(list); Method 3: Using Streams (Java 8+) Use the Stream API to collect list ...
Read MoreHow to check the Java list size?
The Java List interface provides a size() method to check the current number of elements in the list. The size updates automatically as elements are added or removed. Syntax int size() Returns the number of elements in the list. If the list contains more than Integer.MAX_VALUE elements, it returns Integer.MAX_VALUE. Example The following example shows how the list size changes after adding and removing elements ? import java.util.ArrayList; import java.util.Arrays; import java.util.List; public class CollectionsDemo { public static void main(String[] args) { ...
Read MoreHow do I add multiple items to a Java ArrayList in single statement?
We can use Arrays.asList() method to add multiple items to a Java ArrayList in a single statement. This method returns a fixed-size list backed by the specified array, which we then pass to the ArrayList constructor to create a modifiable list. Syntax public static List asList(T... a) Returns a fixed-size list backed by the specified array. T − The runtime type of the array. a − The array by which the list will be backed. Note − The list returned by Arrays.asList() is fixed-size, meaning you cannot add or remove ...
Read MoreDifference between Java and Kotlin in Android with Examples
Kotlin was introduced for Android development as a modern alternative to Java, offering concise syntax, null safety, and many language-level improvements. Google announced Kotlin as the preferred language for Android development in 2019. Code Comparison Examples Kotlin reduces boilerplate code significantly compared to Java − Setting Text on a View // Java: requires casting and explicit reference TextView displayText = (TextView) findViewById(R.id.textView); displayText.setText("Hello World"); // Kotlin: concise with synthetic view binding textView.setText("Hello World") Null Safety // Kotlin enforces null check at compile time var value: String = "abc" ...
Read MoreDifference between Traits and Abstract Classes in Scala.
In Scala, both traits and abstract classes can contain abstract and non-abstract methods. Traits are similar to Java interfaces (with default methods), while abstract classes are similar to Java abstract classes. The key difference is that traits support multiple inheritance, while abstract classes support only single inheritance. Traits Traits are created using the trait keyword. They can contain both abstract and concrete methods. A class can mix in multiple traits using the with keyword, and traits can also be added to individual object instances at creation time. Abstract Classes Abstract classes are created using the abstract ...
Read More