Chandu yadav

Chandu yadav

810 Articles Published

Articles by Chandu yadav

Page 31 of 81

DoubleStream anyMatch() method in Java

Chandu yadav
Chandu yadav
Updated on 11-Mar-2026 148 Views

The anyMatch() method of the DoubleStream class returns whether any elements of this stream match the provided predicate.The syntax is as followsboolean anyMatch(DoublePredicate predicate)Here, the parameter predicate is a stateless predicate to apply to elements of this stream. The DoublePredicate here is a predicate of one double-valued argument.To use the DoubleStream class in Java, import the following packageimport java.util.stream.DoubleStream;Create a DoubleStream and add some elements to the streamDoubleStream doubleStream = DoubleStream.of(67.9, 89.9, 10.5, 95.8, 49.6);Now, check if any of the elements match the predicateboolean res = doubleStream.anyMatch(a -> a > 50);The following is an example to implement DoubleStream anyMatch() method ...

Read More

DoubleStream forEachOrdered() method in Java

Chandu yadav
Chandu yadav
Updated on 11-Mar-2026 162 Views

The forEachOrdered() method of the DoubleStream class in Java performs an action for each element of this stream. This assures that each element is processed in encounter order for streams that have a defined encounter order.The syntax is as followsvoid forEachOrdered(DoubleConsumer action)Here, DoubleConsumer represents an operation that accepts a single double-valued argument and returns no result. The parameter action is a non-interfering action to perform on the elements.To use the DoubleStream class in Java, import the following packageimport java.util.stream.DoubleStream;The following is an example to implement DoubleStream forEachOrdered() method in Java:Exampleimport java.util.stream.DoubleStream; public class Demo {    public static void main(String[] ...

Read More

The toArray() method of Java AbstractCollection class

Chandu yadav
Chandu yadav
Updated on 11-Mar-2026 187 Views

The toArray() method of the AbstractCollection class is used to return the elements in this collection. The elements are returned in the form of an array.The syntax is as followspublic Object[] toArray()To work with AbstractCollection class in Java, import the following packageimport java.util.AbstractCollection;At first, declare AbstractCollection and add some elementsAbstractCollection absCollection = new ArrayList(); absCollection.add("Laptop"); absCollection.add("Tablet"); absCollection.add("Mobile"); absCollection.add("E-Book Reader");Now, use the toArray() method to return the elements in the form of an arrayObject[] myArr = absCollection.toArray();The following is an example to implement AbstractCollection toArray() method in JavaExampleimport java.util.ArrayList; import java.util.AbstractCollection; public class Demo {    public static void main(String[] args) ...

Read More

LongStream forEach() method in Java

Chandu yadav
Chandu yadav
Updated on 11-Mar-2026 210 Views

The forEach() method of the LongStream class in Java performs an action for each element of this stream.The syntax is as followsvoid forEach(LongConsumer action)Here, the parameter action is a non-interfering action to perform on the elements. LongConsumer represents an operation that accepts a single long-valued argument and returns no result.To use the LongStream class in Java, import the following packageimport java.util.stream.LongStream;The following is an example to implement LongStream forEach() method in JavaExampleimport java.util.*; import java.util.stream.LongStream; public class Demo { public static void main(String[] args) { LongStream longStream = LongStream.of(1000L, 12000L, 30000L); ...

Read More

ArrayBlockingQueue add() method in Java

Chandu yadav
Chandu yadav
Updated on 11-Mar-2026 133 Views

To add elements to the ArrayBlockingQueue class, use the add() method.The syntax is as followsboolean add(E ele)Here, ele is the element to be added to the queue. To work with ArrayBlockingQueue class, you need to import the following packageimport java.util.concurrent.ArrayBlockingQueue;The following is an example to add elements in Java ArrayBlockingQueue classExampleimport java.util.concurrent.ArrayBlockingQueue; public class Demo {    public static void main(String[] args) {       ArrayBlockingQueue q = new ArrayBlockingQueue(7);       q.add(100); q.add(250); q.add(300); q.add(450); q.add(550); q.add(600); q.add(700);       System.out.println("ArrayBlockingQueue = " + q);    } }OutputArrayBlockingQueue = [100, 250, 300, 450, 550, 600, 700]

Read More

Iterate through a LinkedList using an Iterator in Java

Chandu yadav
Chandu yadav
Updated on 11-Mar-2026 6K+ Views

An Iterator can be used to loop through an LinkedList. The method hasNext( ) returns true if there are more elements in LinkedList and false otherwise. The method next( ) returns the next element in the LinkedList and throws the exception NoSuchElementException if there is no next element.A program that demonstrates this is given as follows.Exampleimport java.util.LinkedList; import java.util.Iterator; public class Demo {    public static void main(String[] args) {       LinkedList l = new LinkedList();       l.add("John");       l.add("Sara");       l.add("Susan");       l.add("Betty");       l.add("Nathan");     ...

Read More

LongStream mapToInt() method in Java

Chandu yadav
Chandu yadav
Updated on 11-Mar-2026 1K+ Views

The mapToInt() method returns an IntStream consisting of the results of applying the given function to the elements of this stream.The syntax is as followsmapToInt(LongToIntFunction mapper)Here, the parameter mapper is the stateless function applied to each element.Declare LongStream and add some elementsLongStream longStream = LongStream.of(1000L, 13000L, 18000L);Now, use the IntStream and mapToInt()IntStream intStream = longStream.mapToInt(val -> (int) val);The following is an example to implement LongStream mapToInt() in JavaExampleimport java.util.*; import java.util.stream.IntStream; import java.util.stream.LongStream; public class Demo {    public static void main(String[] args) {       LongStream longStream = LongStream.of(1000L, 13000L, 18000L);       IntStream intStream = longStream.mapToInt(val ...

Read More

LongStream asDoubleStream() method in Java

Chandu yadav
Chandu yadav
Updated on 11-Mar-2026 129 Views

The asDoubleStream() method of the LongStream class in Java returns a DoubleStream consisting of the elements of this stream, converted to double.The syntax is as follows.DoubleStream asDoubleStream()Here, DoubleStream is a sequence of primitive double-valued elements. To use the LongStream class in Java, import the following package.import java.util.stream.LongStream;Create LongStream and add elements.LongStream longStream = LongStream.of(2000L, 35000L, 45000L);Now, convert it to double and return using asDoubleStream() method.DoubleStream s = longStream.asDoubleStream();The following is an example to implement LongStream asDoubleStream() method.Exampleimport java.util.stream.LongStream; import java.util.stream.DoubleStream; public class Demo {    public static void main(String[] args) {       LongStream longStream = LongStream.of(2000L, 35000L, 45000L); ...

Read More

String Operations in Pytho

Chandu yadav
Chandu yadav
Updated on 11-Mar-2026 992 Views

In python, there is a standard library, called string. In the string module, there are different string related constants, methods, classes are available. To use these modules, we need to import the string module in our code. import string Some string constants and their corresponding values are as follows − Sr.No. String Constant & Values into it 1 string.ascii_lowercase'abcdefghijklmnopqrstuvwxyz' 2 string.ascii_uppercase'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 3 string.ascii_lettersConcatenation of asci_lowwecase and ascii_uppercase 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ' 4 string.digits'0123456789' 5 string.hexdigits'0123456789abcdefABCDEF' 6 string.octdigits'01234567' 7 string.punctuation'!"#$%&'()*+, -./:;?@[\]^_`{|}~' ...

Read More

Schedule a task for execution in Java

Chandu yadav
Chandu yadav
Updated on 11-Mar-2026 6K+ Views

One of the methods in the Timer class is the void schedule(Timertask task, Date time) method. This method schedules the specified task for execution at the specified time. If the time is in the past, it schedules the task for immediate execution.Declaration −The java.util.Timer.schedule(Timertask task, Date time) is declared as follows −public void schedule(Timertask task, Date time)There are few exceptions thrown by the schedule(Timertask task, Date time) method. They are as follows −IllegalArgumentExceptionThis exception is thrown if time.getTime() is negativeIllegalStateExceptionThis exception is thrown if task was scheduled or cancelled beforehand, timer was cancelled, or timer thread terminated.NullPointerExceptionThis exception is thrown ...

Read More
Showing 301–310 of 810 articles
« Prev 1 29 30 31 32 33 81 Next »
Advertisements