Article Categories
- All Categories
-
Data Structure
-
Networking
-
RDBMS
-
Operating System
-
Java
-
MS Excel
-
iOS
-
HTML
-
CSS
-
Android
-
Python
-
C Programming
-
C++
-
C#
-
MongoDB
-
MySQL
-
Javascript
-
PHP
-
Economics & Finance
Selected Reading
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!!!
Advertisements
