Monday, 12 March 2018

What is Functional Interface in Java 8 ~ foundjava

Functional Interface in Java 8 In this java 8 tutorial, We are going to learn new feature of java 8 which is functional interface.There are so many new features are introduced in java 8 e.g default and static method, new date and time API, Lambda Expressions etc. functional interface is one of them.Let's start with the definition of functional interface. What is Functional Interface...
Read More »

How To Use Scanner Class In Java ~ foundjava

Scanner Class in Java In this article, We will see how to use scanner class in java with the help of some basic and easy java programs.Java scanner class is a predefined class Which is used for reading the input or data from the keyboard given by the user.Scanner class is a final class in java and it extends Object class and implements Closeable, AutoCloseable, and Iterator interfaces. For...
Read More »

Java Program To Find Area Of Triangle ~ foundjava

Java Program to Calculate Area of Triangle In this java tutorial, We are going to learn java program to find area of triangle with 3 different-different ways with simple examples.There are many method to calculate area of triangle in java programs but here we will see only 3 useful method step-by-step with quite easy examples. Let's see java program for area of triangle. 1) Area...
Read More »