1 | This invokes the class Date and creates object today as an instance of this class |
2 | Date() is Constructor of Date class which sets default value (current date) in today |
3 | Date today declares today to be instance of this class |
4 | import java.util.Date; |
5 |
class DateApp {
|
6 | } |