Found 271 Articles for Java8

What is the purpose of private constructor in Java?

Syed Javed
Updated on 18-Jun-2020 07:56:40

627 Views

The private constructor is useful in case we want to restrict the object creation. For example, Singleton pattern can be implemented using a private constructor.ExampleLive Demopublic class Tester {    private static Tester instance;    private Tester(){}      public static Tester getInstance(){       if(instance == null){          instance = new Tester();       }       return instance;    }      public static void main(String[] args) {       Tester tester = Tester.getInstance();       Tester tester1 = Tester.getInstance();       System.out.println(tester.equals(tester1));    }   }OutputIt will print the output astrue

How is down-casting possible in Java?

Syed Javed
Updated on 12-Mar-2020 10:34:57

108 Views

Yes, a variable can be downcast to its lower range substitute by casting. It may lead to data loss although. See the example below −ExampleLive Demopublic class Tester {      public static void main(String[] args) {       int a = 300;         byte b = (byte)a;         System.out.println(b);    }   }OutputIt will print output as −44

What is runtime polymorphism or dynamic method overloading?

Ankitha Reddy
Updated on 05-Mar-2020 12:29:43

1K+ Views

Polymorphism is the ability of an object to take on many forms. The most common use of polymorphism in OOP occurs when a parent class reference is used to refer to a child class object. Method overriding by a subclass is termed as runtime polymorphism. JVM determines the method to be executed at runtime instead of compile time. exampleLive Democlass SuperClass {    SuperClass get(){       System.out.println("SuperClass");       return this;    } } public class Tester extends SuperClass {    Tester get(){       System.out.println("SubClass");       return this;    }    public static void main(String[] args) {       SuperClass tester = new Tester();         tester.get();    }   }OutputSubClass

What is a marker or tagged interface in Java?

Debarpito Sarkar
Updated on 05-Sep-2022 12:14:41

2K+ Views

This article will help you understand what a Marker or Tagged Interface in Java is. Before understanding marker interface, let’s revise on Interface. INTERFACE Similar to an object, an Interface is a blueprint of a class. It consists of static constants and abstract methods. It is a mechanism to achieve abstraction and multiple inheritance in Java. It is declared using the interface keyword. It provides total abstraction, meaning all methods in an interface must be declared with empty body, and all fields must be public, static and final by default. Syntax interface { // constant fields declaration ... Read More

What is static blank final variable in Java?

Syed Javed
Updated on 30-Jul-2019 22:30:22

327 Views

No. It is not allowed in Java. Compiler will fail the compilation throwing error that the blank final field may not have been initialized.

What is blank or uninitialized final variable in Java?

Ankitha Reddy
Updated on 30-Jul-2019 22:30:22

185 Views

No. It is not allowed in Java. The compiler will fail the compilation throwing error that the blank final field may not have been initialized.

What are the 6 ways to use this keyword in Java?

Priya Pallavi
Updated on 18-Jun-2020 07:53:10

2K+ Views

this can be used to get the current object.this can be used to invoke current object's method.this() can be used to invoke current class constructorthis can be passed as a parameter to a method call.this can be passed as a parameter to a constructor.this can be used to return the current object from the method.

Can we create a program without a main method in Java?

Syed Javed
Updated on 30-Jul-2019 22:30:22

2K+ Views

No. For Java based application, JVM will complain about missing main method.

Java program to subtract two matrices.

Syed Javed
Updated on 05-Mar-2020 12:37:40

590 Views

Following is the required program.ExampleLive Demopublic class Tester {    public static void main(String args[]) {       //matrix 1       int a[][] = { { 1, 3, 4 }, { 2, 4, 3 }, { 3, 4, 5 } };       //matrix 2       int b[][] = { { 1, 3, 4 }, { 2, 4, 3 }, { 1, 2, 4 } };       //result matrix       int c[][] = new int[3][3]; // 3 rows and 3 columns       // subtract and print matrix       for (int i = 0; i < 3; i++) {          for (int j = 0; j < 3; j++) {             c[i][j] = a[i][j] - b[i][j];             System.out.print(c[i][j] + " ");          }          System.out.println();       }    } }Output0 0 0 0 0 0 2 2 1

Find the 3rd smallest number in a Java array.

Kumar Varma
Updated on 12-Mar-2020 10:10:40

4K+ Views

ExampleFollowing is the required program.Live Demopublic class Tester {    public static int getThirdSmallest(int[] a) {       int temp;       //sort the array       for (int i = 0; i < a.length; i++) {          for (int j = i + 1; j < a.length; j++) {             if (a[i] > a[j]) {                temp = a[i];                a[i] = a[j];                a[j] = temp;             }          }       }       //return third smallest element       return a[2];    }    public static void main(String args[]) {       int a[] = { 11,10,4, 15, 16, 13, 2 };       System.out.println("Third Smallest: " +getThirdSmallest(a));    } }OutputThird smallest: 10

Advertisements