我在C#分配中遇到了构造函数的麻烦。下面的第一段代码包含一些分配说明。从本质上讲,据我了解,我将创建两个构造函数,一个用于设置默认日期,另一个用于检查用户的日期。另外,有一种SetDate
方法似乎在做同样的事情。这些似乎是多余的,但是根据分配说明,两者都是必需的。我对面向对象的编程非常陌生,所以我不确定如何将东西“传递”给构造函数,或者不确定如何使用它并在main方法中调用它。第二段代码是我到目前为止编写的代码。所有的日期验证方法似乎都不错。但是,我不知道该如何使用public Date(int M, int D, int Y)
构造函数和SetDate
方法。这些都应该做什么?另外,当我还被要求声明上面的Month,Day和Year时,为什么指示我使用整数变量M,D,Y?我们将不胜感激任何能帮助我理解如何使用此Constructor以及它与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();
}
}
答案 0 :(得分:1)
似乎要求您创建执行相同操作的方法和构造函数。在这种情况下,最简单的事情是让构造函数调用该方法。
我对您的代码的唯一评论是,您显示的问题陈述不需要在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;
}
}
答案 1 :(得分:0)
如果您想使用日期制作一些实际的应用程序,那么我建议您看一下System命名空间中的DateTime结构。具有TryParse函数,无论输入是否有效,该函数都会返回true或false。
但是,似乎您正在执行一些编程练习,因此在这种情况下,我的回答是:在构造函数中具有可能导致无效对象的参数不是很好-在您的情况下,无效日期。这是因为一旦调用构造函数,您将以一种或另一种方式拥有一个对象,除非您在构造函数中引发异常。但是,如果您仍然希望拥有这样的名称,则需要在类/结构中具有一个名为“ IsValid”的属性或公共变量,该变量或公共变量可以告诉构造函数是否给出了有效日期。 更好的选择是遵循DateTime方法-具有一个公共静态函数,该函数返回有效的Date对象。像这样:
public bool TryParse(int m, int d, int y, out Date date)
{
// validate
// if valid then return Date object like that:
date = new Date()
{
Month = m,
Day = d,
Year = y
};
return true;
// Or like that:
date = new Date(m, d, y);
return true;
// if not valid then return null (because have to return something)
date = null;
return false;
}