- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在创建这个程序,它将打印用户输入的日期的日历。在我的方法 dayOfWeek()
中,公式采用日、月和两种类型的年份,并计算 0-6 之间的数字,该数字等于一周中的某一天。然而,我的方法总是返回 2,经过一些测试,我发现没有任何 get 方法 (getDay()
、getMonth()
、getYear())
code> 返回值。
命令行输入是“dd/mm/yyyy”,它被分成主要部分。在 dayofweek()
方法中,它始终返回 2 或星期一(因为它是分配给 2 的值)。然而,当定义变量 q、m、K 和 J 时,它们都设置为 0
谁能看出逻辑错误吗? (编辑,有些缩进有点不对)
class MyCalendar
{
private MyDate myDate;
private Day day;
int dayofmonth, month, year;
public static void main(String[] args)
{
String userinput = args[0];
String[] splitdate = userinput.split("/");
int dayofmonth = Integer.parseInt(splitdate[0]);
int year = Integer.parseInt(splitdate[2]);
int month = Integer.parseInt(splitdate[1]);
if (month <= 2)
{
month = month + 12;
}
MyDate myDate = new MyDate(dayofmonth, month, year);
MyCalendar mycal = new MyCalendar(myDate);
Scanner scanner = new Scanner(System.in);
while (myDate.isDateValid() == false)
{
System.out.print("Date is not valid. Please input a valid date: ");
userinput = scanner.nextLine();
splitdate = userinput.split("/");
dayofmonth = Integer.parseInt(splitdate[0]);
year = Integer.parseInt(splitdate[2]);
month = Integer.parseInt(splitdate[1]);
if (month <= 2)
{
month = month + 12;
}
myDate.isDateValid();
}
System.out.println(myDate.getDay() + " " + myDate.getMonth() + " " + myDate.getYear() + " " + mycal.dayOfWeek());
}
public MyCalendar(MyDate myDate)
{
this.myDate = myDate;
}
public Day dayOfWeek()
{
MyDate Date = new MyDate(dayofmonth, month, year);
Day myDay = Day.Sunday;
int q = Date.getDay();
int m = Date.getMonth();
int K = (Date.getYear()%100);
int J = (Date.getYear()/100);
int h = ((q + ((13*(m+1))/5) + K + (K/4) + (J/4) + 5*J)%7);
System.out.println(h + " " + q + " " + m + " " + K + " " + J);
if (h == 0){
myDay = Day.Saturday;
return myDay;
}
if (h == 1){
myDay = Day.Sunday;
return myDay;
}
if (h == 2){
myDay = Day.Monday;
return myDay;
}
if (h == 3){
myDay = Day.Tuesday;
return myDay;
}
if (h == 4){
myDay = Day.Wednesday;
return myDay;
}
if (h == 5){
myDay = Day.Thursday;
return myDay;
}
if (h == 6){
myDay = Day.Friday;
return myDay;
}
System.out.println(q + " " + m + " " + K + " " + J);
return myDay;
}
public int weekOfMonth()
{
int week = 0;
return week;
}
public void printCalendar()
{
}
}
class MyDate
private int day;
private int month;
private int year;
public MyDate(int day, int month, int year)
{
this.day = day;
this.month = month;
this.year = year;
}
public int getDay()
{
return day;
}
public int getMonth()
{
return month;
}
public int getYear()
{
return year;
}
最佳答案
让我们考虑一下:
1) MyDate
代码很简单。构造函数和 setter/getter 。我没有看到任何错误。
2) MyDate
实例的创建和使用如下:
MyDate Date = new MyDate(dayofmonth, month, year);
Day myDay = Day.Sunday;
int q = Date.getDay();
int m = Date.getMonth();
int K = (Date.getYear()%100);
int J = (Date.getYear()/100);
这里存在一些严重的样式错误(Date
应该是 date
等等),这使得这很难理解。经验丰富的 Java 程序员在看到 Date.getDay()
后一定会再三考虑。但这是转移注意力的事情。
3) 真正的问题是 dayofmonth
、month
和 year
的值从何而来?答案:它们被声明为 MyCalendar
的字段。
int dayofmonth, month, year;
4) 它们在哪里初始化?答:无处可去!!您似乎正在尝试在 main
方法中初始化它们,如下所示:
int dayofmonth = Integer.parseInt(splitdate[0]);
int year = Integer.parseInt(splitdate[2]);
int month = Integer.parseInt(splitdate[1]);
但是仔细看!您实际上是在声明和初始化局部变量...而不是MyCalendar
实例的实例字段。因此,信息不会到达您的代码需要的地方。
您需要重新设计您的代码。例如,问问自己为什么 MyCalendar
既有 myDate
字段,又有单独的 dayofmonth
、 month
和 年
字段?
仔细思考信息流。
正如@ScaryWombat 恰本地评论的那样:
Yeah ... a bit of thinking and development is required on your part.
(理论上,我们可以为您重写您的代码,但您自己动手会学到更多东西。特别是“思考”部分。)
关于java - 为什么我的 get 方法总是返回 0,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56284844/
我想了解 Ruby 方法 methods() 是如何工作的。 我尝试使用“ruby 方法”在 Google 上搜索,但这不是我需要的。 我也看过 ruby-doc.org,但我没有找到这种方法。
Test 方法 对指定的字符串执行一个正则表达式搜索,并返回一个 Boolean 值指示是否找到匹配的模式。 object.Test(string) 参数 object 必选项。总是一个
Replace 方法 替换在正则表达式查找中找到的文本。 object.Replace(string1, string2) 参数 object 必选项。总是一个 RegExp 对象的名称。
Raise 方法 生成运行时错误 object.Raise(number, source, description, helpfile, helpcontext) 参数 object 应为
Execute 方法 对指定的字符串执行正则表达式搜索。 object.Execute(string) 参数 object 必选项。总是一个 RegExp 对象的名称。 string
Clear 方法 清除 Err 对象的所有属性设置。 object.Clear object 应为 Err 对象的名称。 说明 在错误处理后,使用 Clear 显式地清除 Err 对象。此
CopyFile 方法 将一个或多个文件从某位置复制到另一位置。 object.CopyFile source, destination[, overwrite] 参数 object 必选
Copy 方法 将指定的文件或文件夹从某位置复制到另一位置。 object.Copy destination[, overwrite] 参数 object 必选项。应为 File 或 F
Close 方法 关闭打开的 TextStream 文件。 object.Close object 应为 TextStream 对象的名称。 说明 下面例子举例说明如何使用 Close 方
BuildPath 方法 向现有路径后添加名称。 object.BuildPath(path, name) 参数 object 必选项。应为 FileSystemObject 对象的名称
GetFolder 方法 返回与指定的路径中某文件夹相应的 Folder 对象。 object.GetFolder(folderspec) 参数 object 必选项。应为 FileSy
GetFileName 方法 返回指定路径(不是指定驱动器路径部分)的最后一个文件或文件夹。 object.GetFileName(pathspec) 参数 object 必选项。应为
GetFile 方法 返回与指定路径中某文件相应的 File 对象。 object.GetFile(filespec) 参数 object 必选项。应为 FileSystemObject
GetExtensionName 方法 返回字符串,该字符串包含路径最后一个组成部分的扩展名。 object.GetExtensionName(path) 参数 object 必选项。应
GetDriveName 方法 返回包含指定路径中驱动器名的字符串。 object.GetDriveName(path) 参数 object 必选项。应为 FileSystemObjec
GetDrive 方法 返回与指定的路径中驱动器相对应的 Drive 对象。 object.GetDrive drivespec 参数 object 必选项。应为 FileSystemO
GetBaseName 方法 返回字符串,其中包含文件的基本名 (不带扩展名), 或者提供的路径说明中的文件夹。 object.GetBaseName(path) 参数 object 必
GetAbsolutePathName 方法 从提供的指定路径中返回完整且含义明确的路径。 object.GetAbsolutePathName(pathspec) 参数 object
FolderExists 方法 如果指定的文件夹存在,则返回 True;否则返回 False。 object.FolderExists(folderspec) 参数 object 必选项
FileExists 方法 如果指定的文件存在返回 True;否则返回 False。 object.FileExists(filespec) 参数 object 必选项。应为 FileS
我是一名优秀的程序员,十分优秀!