What is the SimpleTimeZone class? - Core Java

What is the SimpleTimeZone class?

- SimpleTimeZone is a concrete subclass of TimeZone class. The TimeZone class represents a time zone, that is to be used with a Gregorian calendar.

- The SimpleTimeZone is created by using the base time zone offset from GMT time zone ID and rules, for starting and ending the time of daylight.

- SimpleTimeZone is a subclass of TimeZone.

- It represents a time zone for use with a Gregorian calendar.

- It class does not handle historical changes.
Purpose of the System class - Core Java
What is the purpose of the System class? - System class is provided with useful fields (static members) that are pertaining to the environment...
How are this() and super() used with constructors? - Core Java
How are this() and super() used with constructors? - this() constructor is invoked within a method of a class, if the execution of the constructor is to be done before the functionality of that method...
Purpose of finalization - Core Java
What is the purpose of finalization? - Finalization is the facility to invoke finalized() method. The purpose of finalization is to perform some action before the objects get cleaned up...
Post your comment