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: 26-Jun-2020

485 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements