The @SuppressWarnings
annotation tells the compiler to suppress the warning messages it normally shows during compilation time. It has some level of suppression to be added to the code, these level including: all
, deprecation
, fallthrough
, finally
, path
, serial
and unchecked
.
package org.kodejava.basic;
import java.util.Calendar;
import java.util.Date;
public class SuppressWarningsExample {
@SuppressWarnings(value={"deprecation"})
public static void main(String[] args) {
Date date = new Date(2021, Calendar.OCTOBER, 3);
System.out.println("date = " + date);
}
}
In the example above if we don’t use @SuppressWarnings
annotation the compiler will report that the constructor of the Date
class called above has been deprecated.
Latest posts by Wayan (see all)
- How do I build simple search page using ZK and Spring Boot? - March 8, 2023
- How do I calculate days between two dates excluding weekends and holidays? - January 12, 2023
- How do I discover the quarter of a given date? - January 11, 2023