熱點推薦:
您现在的位置: 電腦知識網 >> 編程 >> Java編程 >> Java核心技術 >> 正文

日期打印程序

2022-06-13   來源: Java核心技術 

  public class MyDate{
   
    private int year;
   
    private int month;
   
    private int day;
   
    public MyDate(int year int month int day){
   
    thisyear = year;
   
    thismonth = month;
   
    thisday = day;
   
    }
   
    public MyDate nextDay(){
   
    int newDay = day + ;
   
    int newMonth = month;
   
    int newYear = year;
   
    if(newDay > ){
   
    newMonth ++;
   
    newDay = ;
   
    }
   
    if(newMonth > ){
   
    newYear ++;
   
    newMonth = ;
   
    }
   
    MyDate newDate =
   
    new MyDate(newYear newMonth newDay)
   
    return newDate;
   
    }
   
    public int getYear(){
   
    return year;
   
    }
   
    public int getMonth(){
   
    return month;
   
    }
   
    public int getDay(){
   
    return day;
   
    }
   
    }
   
    package ch;
   
    public class DateTest{
   
    public static void main(String[] args){
   
    MyDate oldDate = new MyDate(
   
    MyDate newDate = oldDatenextDay()
   
    Systemoutprintln(newDategetYear())
   
    Systemoutprintln(newDategetMonth())
   
    Systemoutprintln(newDategetDay())
   
    }
   
    }


From:http://tw.wingwit.com/Article/program/Java/hx/201311/27053.html
  • 上一篇文章:

  • 下一篇文章:
  • 推薦文章
    Copyright © 2005-2022 電腦知識網 Computer Knowledge   All rights reserved.