首页 > 解决方案 > 在 C# 中创建和使用构造函数以及布尔方法

问题描述

我在 C# 赋值中的构造函数遇到了一些问题。下面的第一个代码块包含一些赋值指令。本质上,据我了解,我将创建两个构造函数,一个用于设置默认日期,另一个用于检查用户的日期。此外,还有一种SetDate方法似乎在做同样的事情。这些似乎是多余的,但根据分配说明,两者都是必需的。我对面向对象编程非常陌生,所以我不确定如何将东西“传递”给构造函数,或者真正如何使用它并在 main 方法中调用它。第二个代码块是我到目前为止所写的。所有日期验证方法似乎都很好。但是,我不知道如何处理public Date(int M, int D, int Y)构造函数和SetDate方法。这些都应该做什么?另外,当我还被告知在上面声明月、日和年时,为什么我被指示使用整数变量 M、D、Y?任何可能有助于我理解如何使用此构造函数以及它与该SetDate方法在功能上有何关联和不同之处的见解将不胜感激。

 //Create a Date Class
 //This class holds:
private int Month;
private int Day;
private int Year;
    //Include the following constructors/methods. Include others/more if you 
    //need them.

    // Sets date to 1/1/1900
public Date()

    // Sets date to user’s input.
    // Checks to see the date is valid
    // If it isn’t valid, print message and set date to 1/1/1900
public Date(int M, int D, int Y)

     // Sets date to user’s input.
     // Checks to see the date is valid
     // If it isn’t valid, print message and set date to 1/1/1900
public Boolean SetDate(int M, int D, int Y)ere

//************************************************ ******************************

class Date
{
    private int Month;
    private int Day;
    private int Year;

    // Sets date to 1/1/1900
    public Date()
    {
        Month = 1;
        Day = 1;
        Year = 1900;
    }

    public Date(int M, int D, int Y)
    {
        Month = M;
        Day = D;
        Year = Y;
    }

    public Boolean SetDate(int M, int D, int Y)
    {

        int valDate = 0;

        Console.WriteLine("You will be prompted to enter three(3) numbers to represent a month, " +
            "day, and year. Only dates between 1/1/1900 and 12/31/2100 are valid.");

        Console.WriteLine("");

        while (valDate < 1)
        {
            Console.WriteLine("Enter the number for the month.");
            M = int.Parse(Console.ReadLine());
            Console.WriteLine("");

            Console.WriteLine("Enter the number for the day.");
            D = int.Parse(Console.ReadLine());
            Console.WriteLine("");

            Console.WriteLine("Enter the number for the year.");
            Y = int.Parse(Console.ReadLine());
            Console.WriteLine("");

            ValidateDate();

            if (ValidateDate())
            {
                DisplayDate();
                valDate++;
                return true;
            }
            else
            {

                Console.WriteLine("Please enter a valid date.");
                Console.WriteLine("");
                Month = 1;
                Day = 1;
                Year = 1900;
                return false;
            }


        }
        return false;
    }
        // Determines if date is valid.
    public Boolean ValidateDate()
    {
        ValidateMonth();
        ValidateDay();
        ValidateYear();

        if (ValidateMonth() && ValidateDay() && ValidateYear())
        {
            return true;
        }
        else
        {
            return false;
        }


    }
        // Determines if month is valid.
    public Boolean ValidateMonth()
    {
        if (Month >= 1 && Month <= 12)
        {
            return true;
        }
        else
        {
            return false;
        }
    }
        // Determines if year is valid.
    public Boolean ValidateYear()
    {
        if(Year >= 1900 && Year <= 2100)
        {
            return true;
        }
        else
        {
            return false;
        }
    }
        // Determines if day is valid
    public Boolean ValidateDay()
    {
        IsLeapYear();

        if(Month == 1 || Month == 3 || Month == 5 || Month == 7 || Month == 8 || Month == 10 || Month == 12)
        {
            if (Day >= 1 && Day <= 31)
            {
                return true;
            }
            else
            {
                return false;
            }
        }
        else if (Month == 4 || Month == 6 || Month == 9 || Month == 11)
        {
            if (Day >= 1 && Day <= 30)
            {
                return true;
            }
            else
            {
                return false;
            }
        }
        else if (Month == 2 && IsLeapYear())
        {
            if (Day >= 1 && Day <= 29)
            {
                return true;
            }
            else
            {
                return false;
            }
        }
        else if (Month == 2 && !IsLeapYear())
        {
            if (Day >= 1 && Day <= 28)
            {
                return true;
            }
            else
            {
                return false;
            }
        }
        else
        {
            return false;
        }
    }

    // Determine if year is a leap year
    public Boolean IsLeapYear()
    {
        if ((Year % 4 == 0 && Year % 100 != 0) || (Year % 400 == 0))
        {
            return true;
        }
        else
        {
            return false;
        }
    }

        // Print date to screen in format M/D/Y
    public void DisplayDate()
    {
        Console.WriteLine(ShowDate());
    }

    public String ShowDate()
    {
        StringBuilder myStringBuilder = new StringBuilder();
        myStringBuilder.AppendFormat("{0} / {1} / {2}", Month, Day, Year);
        return (myStringBuilder.ToString());
    }

    static void Main(string[] args)
    {
        Date NewDate = new Date();
        NewDate.Date();

        Console.ReadLine();
    }
}

标签: c#objectmethodsconstructorboolean

解决方案


看起来你被要求创建一个做同样事情的方法和一个构造函数。在这种情况下要做的简单事情是让构造函数调用该方法。

我对您的代码的唯一评论是您显示的问题陈述不需要在 SetDate 方法中收集输入。鉴于该声明,用户的输入似乎将在您的班级之外收集。

我不知道您对失败消息的要求是什么。这在它自己的方法中也可能有意义。

这是一个例子:

public class Date
{
    private int Month;
    private int Day;
    private int Year;

    public Date()
    {
        SetDefaultDate();
    }

    public Date(int M, int D, int Y)
    {
        SetDate(M, D, Y);
    }

    public void SetDate(int M, int D, int Y)
    {
        if (IsValidDate(M, D, Y))
        {
            Month = M;
            Day = D;
            Year = Y;
        }
        else
        {
            SetDefaultDate();
        }
    }

    private bool IsValidDate(int M, int D, int Y)
    {
        // validation logic.. return true if all parameters result in valid date
        // false if they do not.  If it is an invalid date print the failure message.

        return true;
    }

    private void SetDefaultDate()
    {
        Month = 1;
        Day = 1;
        Year = 1900;
    }
}

推荐阅读