Java2blog
@java2blog
Followers
3K
Following
895
Media
17
Statuses
1K
Java2blog is a @Java blog .Follow to learn #Java #Algorithms #Programming #DataStructure #Android #SpringFramework #Hibernate
Joined November 2009
How to write a lambda expression in a way that you will never forget. A Thread 🧵
1
1
1
Here is the answer to "Can We have try without Catch block in Java" https://t.co/eUygkE828U Follow @java2blog for more such polls.
java2blog.com
In Java, it's possible to use a try block without a catch block, but it must be followed either by a finally block or be part of a try-with-resources statement.
0
0
0
class A { synchronized void m1() { System.out.println("In m1 A"); } void m2() { System.out.println("In m2 A"); } } There are two threads T1 and T2. T1 is accessing m1 method. Will T2 be able to access m2 method on the same instance at the same time?
1
1
1
Here is an article on lambda expressions to understand it better. https://t.co/M5VirVF8Om
java2blog.com
Code to sort list of movies by name using comparator
1
0
0
Now, let's say we are given a list of employee objects listOfEmployees and we need to obtain a list of the names of employees. Here, we will use the map() method of the Stream API that takes a Function as a parameter.
1
0
0
Let's use this method to write the Function functional interface.
1
0
0
Step 3:Â Write the implementation similar to a method which takes String as input and returns nothing. Please note that we need to use curly braces {} and a return statement when we want to execute multiple statements.
1
0
0
Step 1: Go to the source code functional interface for which you need to write lambda expressions and copy the parameters of its abstract method. For example: Let's say you want to write lambda expression for Consumer.
1
0
0
How to write a lambda expression in a way that you will never forget. A Thread 🧵
1
1
1
You can call Predicate as: boolean b = stringPredicate.test("Hello World!") // returns true That's a wrap! Follow @java2blog for more such content.
0
0
0
A Predicate is a single-argument functional interface that returns a boolean value, either true or false. It accepts one argument and yields a result as either true or false.
1
0
0