Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

Concrete usage of java Calendar date Abstract Class

2025-01-30 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >

Share

Shulou(Shulou.com)06/03 Report--

This article introduces the knowledge of "the concrete use of java Calendar date abstract class". Many people will encounter such a dilemma in the operation of actual cases, so let the editor lead you to learn how to deal with these situations. I hope you can read it carefully and be able to achieve something!

An abstract class cannot new directly. Its instance object GregorianCalendar () is required.

The c.get () method is required to get the Calendar abstract class properties:

Int year=c.get (Calendar.YEAR)

Set the date manually:

Calendar c=new GregorianCalendar ('2000, 11, 11, 11, 11, 20, 20, 20, and 20)

Int year=c.get (Calendar.YEAR); / / return year

Int week=c.get (calendar.DAY_OF_WEEK) / / return what day of the week

No parameter settings:

Calendar it=new GregorianCalendar ()

Int year=it.get (Calendar.YEAR); / / returns the current year

Addition of dates:

It.add (Calendar.X,N); / / No return value

Calendar it = new GregorianCalendar (); it.add (Calendar.DATE,2); / / the addition operation of the date (sign), it.add (Calendar.DATE,-2) for the next two days; / / the subtraction operation of the date, two days before, the second parameter adds the minus sign System.out.println (it.get (Calendar.DATE))

Date class and time class convert to each other:

Calendar c=new GregorianCalendar ()

Date d=c.getTime () / / date class is converted to time class

C.setTime (new Date ()); / / convert time class to date class

This is the end of the content of "concrete usage of java Calendar date Abstract Class". Thank you for reading. If you want to know more about the industry, you can follow the website, the editor will output more high-quality practical articles for you!

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Development

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report