Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 3304020
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 17, 20262026-05-17T21:01:04+00:00 2026-05-17T21:01:04+00:00

I am trying to make a Date() class, however I think my variables may

  • 0

I am trying to make a Date() class, however I think my variables may not be working correctly or I am breaking some obscure class rule? One clue I got was during debugging…it directed me to the “thread.Class” and displayed the following code:

private void exit() {
    if (group != null) {
        group.remove(this);
        group = null;
    }

I am not sure what this means. This is my first time creating my own class. I think this might be causing “System.out.println(today.daysTo(yearFromNow));” to return zero. It may also be related to the scope of some of my variables. My professor told us we should use private variables, but he wasn’t entirely clear about it, at least to me. Here is the code that I have so far:

public class Date {

private int year;
private int month;
private int day;

public static void main(String[] args) {
    Date today       = new Date(2010,10,22);
    Date today2      = new Date(2010,10,22);
    Date yearFromNow = new Date(2011,10,22);
    System.out.println(today.daysTo(yearFromNow));
    System.out.println(today.getMonth());
    System.out.println(today.getYear());
    System.out.println(today.equals(today2));
    System.out.println(today.compareTo(yearFromNow));
    System.out.println(today.toString());
}

public Date (int year1, int month1, int day1){

    if (year1 <= 0 || month1 <= 0 || month1 > 12 || day1 <= 0 || day1 > 31){
        throw new IllegalArgumentException("Input a valid d/m/y.");
    }       
    year = year1;
    month = month1;
    day = day1;
}

//Modifies current date by adding specified number of days; Not completed yet.
public void addDays (int days){
    int numberOfDays = daysBeforeMonth(this.month, this.year)+this.day+days;
    if (numberOfDays <= 31){
        this.month = 1;
    }
}

//Returns number of days to specified date.
public int daysTo (Date d){
    int presentDate = dayOfYear(this.day, this.month, this.year);
    int futureDate  = dayOfYear(d.day, d.month, d.year);
    return (futureDate - presentDate);
}

//Returns the number of the month in specified Date;
public int getMonth(){
    return this.month;
}

//Returns the number of the year in specified Date;
public int getYear (){
    return this.year;
}

// Reports whether or not this and d represent the same date.
public boolean equals (Date d){
    return this.day == d.day &&
       this.month   == d.month &&
       this.year    == d.year;
}

// Returns negative if this is earlier than d, returns positive
// if this is later than d, and returns zero otherwise.
public int compareTo (Date d){
    if (this.month < d.month || this.day < d.day || this.year < d.year){
        return -1;
    }
    if (this.month > d.month || this.day > d.day || this.year > d.year){
        return 1;
    }
    else return 0;
}

// Converts this Date into string form, using the format
// mm/dd/yyyy, as in 07/22/2006.
public String toString (){
    String stringDate = month+"/"+day+"/"+year;
    return stringDate;
}

// takes an int year and tests whether year is divisble by 4, but
// not 100 OR if it's divisible by 400 => is leap year, else not.
public static boolean isLeapYear(int year) {
    if (year % 4 == 0 && year % 100 != 0) {
        return true;
    }

    else if (year % 400 == 0) {
        return true;
    }

    else {
        return false;
    }
}

//Returns how many days before a certain month, else returns 0.
public static int daysBeforeMonth(int month, int year) {
    int Feb = 28;
    if (isLeapYear(year) == true) {
        month = 29;
    }
    if (month == 1) {
        return 0;
    } else if (month == 2) {
        return 31;
    } else if (month == 3) {
        return Feb + 31;
    } else if (month == 4) {
        return Feb + 61;
    } else if (month == 5) {
        return Feb + 92;
    } else if (month == 6) {
        return Feb + 122;
    } else if (month == 7) {
        return Feb + 153;
    } else if (month == 8) {
        return Feb + 184;
    } else if (month == 9) {
        return Feb + 215;
    } else if (month == 10) {
        return Feb + 245;
    } else if (month == 11) {
        return Feb + 276;
    } else if (month == 12) {
        return Feb + 306;
    }

    else {
        return 0;
    }
}
//Returns how many days have passed in reference to a specific date.
public static int dayOfYear(int day, int month, int year){
    return daysBeforeMonth(month, year) + day;
}

}

If someone could please explain to me where I am wrong in my logic that would be great! Thanks!

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-17T21:01:05+00:00Added an answer on May 17, 2026 at 9:01 pm

    Here

    public int daysTo (Date d){
        int presentDate = dayOfYear(this.day, this.month, this.year);
        int futureDate  = dayOfYear(d.day, d.month, d.year);
        return (futureDate - presentDate);
    }
    

    you calculate the day of year for each dates – which will be the same for both, as each date is Oct 22 (or Nov 22?), [update] albeit from different years [/update] – then return the difference, which is obviously 0.

    Moreover, here

    public static int daysBeforeMonth(int month, int year) {
        int Feb = 28;
        if (isLeapYear(year) == true) {
            month = 29;
        }
        if (month == 1) {
            return 0;
        } else if ... {
        } else if (month == 12) {
            return Feb + 306;
        }
        else {
            return 0;
        }
    }
    

    you change month to an invalid value in leap years, thus the method will return 0.

    I guess you want to set Feb, not month.

    (Btw the Java convention is to start variable names with lowercase.)

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Trying to make a make generic select control that I can dynamically add elements
Trying to make a MySQL-based application support MS SQL, I ran into the following
Trying to make a generic PL/SQL procedure to export data in specific XML format,
Trying to make a web service call to an HTTPS endpoint in my Silverlight
I'm trying to make the case for click-once and smart client development but my
I'm trying to make a data bound column invisible after data binding, because it
I'm trying to make a context menu for a control that is linked to
I am trying to make a div, that when you click it turns into
I am trying to make a JTable that has column spans available. Specifically, I
I am trying to make an Outlook 2003 add-in using Visual Studio 2008 on

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.