Syntax error How to compile assert in Java?

How to compile assert in Java?



In order to compile assert in Java, we simply set the boolean expression as false.

Let us see an example program −

Example

 Live Demo

public class Example {
   public static void main(String[] args) {
      assert false;
      System.out.println("Compiled and executed successfully!!!");
   }
}

Output

Compiled and executed successfully!!!
Updated on: 2020-06-26T06:50:33+05:30

678 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements