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

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: 2026-03-11T22:50:43+05:30

719 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements