Java basic knowledge strengthening the data class of 90:date class and its methods

Source: Internet
Author: User

1. Overview of the Date class

Class date represents a specific moment, accurate to milliseconds

2. Construction method

 Public Date (): Creates a day object based on the current default millisecond value   Public Date (long date): Creates a Date object based on the given millisecond value

3. Member Methods

 Public Long getTime ()  Public void settime (long time)

4. code example:

1  Packagecn.itcast_01;2 3 Importjava.util.Date;4 5 /*6 * Date: Indicates a specific moment, accurate to milliseconds. 7  * 8 * Construction Method:9 * Date (): Creates a Date object based on the current default millisecond valueTen * Date (long date): Creates a Date object based on the given millisecond value One  */ A  Public classDatedemo { -      Public Static voidMain (string[] args) { -         //Creating Objects theDate d =NewDate (); -System.out.println ("D:" +d); -  -         //Creating Objects +         //Long time = System.currenttimemillis (); -         LongTime = 1000 * 60 * 60;//1 hours +Date D2 =NewDate (time); ASystem.out.println ("D2:" +D2); at     } -}

The results are as follows:

Java basic knowledge strengthening the data class of 90:date class and its methods

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.