- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在制作一个使用 JOptionPane
大约几天的 Java 程序。我不是在谈论日期(10/14/2016 等),而是天数:周日、周一
等。
我的问题是在当天添加特定天数的函数(例如今天是星期二,然后添加 5 天)。
我使用数组来访问/引用特定日期以进行显示和输出。
我引用了周日到周六,数组索引分别为 0 到 6。
问题是,假设当前是星期六,如果用户添加 3 天,程序就会崩溃。
我相信这会崩溃,因为由于周六位于索引 6,并且算法尝试访问不存在的第 9 个索引。由于 Java 是一种安全运行的语言,因此它不会显示“null”,而是决定崩溃。
在这种情况下应该发生的是,从星期六开始,程序将显示星期二,而不是:
Exception in thread "main" java.lang.ArrayIndexOutOfBoundsException: 9
我使用 Netbeans 作为我的 IDE,并且我正在自学 Java,因为我的大学在我当前的年级和类(class)中教我 C++、Visual Basic、C#。如果您想要详细信息,那么,
这是主类的源代码:
package weekdaysprogram;
import java.util.*;
public class weekdayParametersProgramMain
{
static Scanner console = new Scanner (System.in);
public static void main(String[] args)
{
weekdayParametersProgram firstObject = new weekdayParametersProgram();
firstObject.inputMainMenu();
}
}
这是第二个类的源代码:
package weekdaysprogram;
import javax.swing.JOptionPane;
public class weekdayParametersProgram
{
int currentDay; //variable used for referencing a certain day
String[] day = {"Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday"}; //Array of days
public void inputMainMenu() //Main menu function
{
int choice;
String inputStr;
String mainMenuStr = "Day Class\n"
+ "Enter choice: \n"
+ "1. Set Day \n"
+ "2. Print Day \n"
+ "3. Print Next Day \n"
+ "4. Print Previous Day \n"
+ "5. Calculate Day \n"
+ "6. Exit";
inputStr = JOptionPane.showInputDialog(mainMenuStr);
choice = Integer.parseInt(inputStr);
switch (choice)
{
case 1:
setDay();
break;
case 2:
printDay();
break;
case 3:
printNextDay();
break;
case 4:
printPreviousDay();
break;
case 5:
calculateDay();
break;
case 6:
exit();
break;
default:
JOptionPane.showMessageDialog(null, "Error Try Again", "Error", JOptionPane.ERROR_MESSAGE);
inputMainMenu();
break;
}
}
public void calculateDay() //the 5th function I'm getting an error at aka the culprit of my error
{
String message = "Current Day: " + currentDay + " - " + day[currentDay] + "\n"
+ "Please enter the amount of days to be added: ";
int tempNum1 = currentDay;
String tempNum2 = JOptionPane.showInputDialog(message);
int tempNum3 = Integer.parseInt(tempNum2);
for (int count=0; count <= tempNum3; count++)
{
if (count == 7) tempNum1 = 0;
else if (count==0) continue; //this is a patch, since there would be a confusion if the user inputted 1 for the addtional day
else tempNum1++;
}
String nextMessage = day[currentDay] + " + " + tempNum3 + " days = " + day[tempNum1];
JOptionPane.showMessageDialog(null, nextMessage, "New Day", JOptionPane.INFORMATION_MESSAGE);
inputMainMenu();
}
public void setDay() //1st function for set day
{
String inputStr;
String message = "Enter day index: \n"
+ "0 = " + day[0] + "\n"
+ "1 = " + day[1] + "\n"
+ "2 = " + day[2] + "\n"
+ "3 = " + day[3] + "\n"
+ "4 = " + day[4] + "\n"
+ "5 = " + day[5] + "\n"
+ "6 = " + day[6] + "\n";
inputStr = JOptionPane.showInputDialog(message);
switch (inputStr)
{
case "0":
currentDay = 0;
break;
case "1":
currentDay = 1;
break;
case "2":
currentDay = 2;
break;
case "3":
currentDay = 3;
break;
case "4":
currentDay = 4;
break;
case "5":
currentDay = 5;
break;
case "6":
currentDay = 6;
break;
default:
JOptionPane.showMessageDialog(null, "Please try again.", "Error", JOptionPane.ERROR_MESSAGE);
setDay();
break;
}
inputMainMenu();
}
public void printDay() //2nd function for printing out the current day
{
JOptionPane.showMessageDialog(null, day[currentDay], "Current Day", JOptionPane.INFORMATION_MESSAGE);
inputMainMenu();
}
public void printNextDay() //3rd function for printing out the next day
{
int tempNum = currentDay;
if (tempNum == 6) tempNum = 0;
else tempNum += 1;
JOptionPane.showMessageDialog(null, day[tempNum], "Next Day", JOptionPane.INFORMATION_MESSAGE);
inputMainMenu();
}
public void printPreviousDay() //4th function for printing out the previous day
{
int tempNum = currentDay;
if (tempNum == 0) tempNum = 6;
else tempNum -= 1;
JOptionPane.showMessageDialog(null, day[tempNum], "Previous Day", JOptionPane.INFORMATION_MESSAGE);
inputMainMenu();
}
public void exit()
{
System.exit(0);
}
}
最佳答案
而不是
for (int count=0; count <= tempNum3; count++)
{
if (count == 7) tempNum1 = 0;
else if (count==0) continue; //this is a patch, since there would be a confusion if the user inputted 1 for the addtional day
else tempNum1++;
}
你可以使用
tempNum1 = (currentDay + tempNum3) % 7;
%
是模运算符,因此结果始终在 0 到 6 之间。
关于java - 数组计数器不适用于java,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38543979/
我在leetcode上看到这段代码,是一道求众数的题,下面是题目描述: 给定一个大小为 n 的数组,找到多数元素。众数元素是出现次数超过 ⌊ n/2 ⌋ 次的元素。 你可以假设数组是非空的并且多数元素
每次在 JavaScript 中执行特定操作时,例如: $(function() { $('#typing').keyup(function () { switch($(this)
我一直在为网页设计一个计数器,但我一直被这个我无法解决的功能所困扰。 我有一个 4 个 div 的计数器,因为其中两个是小数字,另外两个是大数字,所以第一个运行得很快,我看不到它们的功能。 有人知道如
我已经在文档中进行了一些搜索,并在网上花了一段时间,但找不到解决方案!我希望警报告诉我单击 .thumb 时它处于each() 的哪一次迭代。 EG:有六个.thumb,我点击数字3,浏览器弹出3!
在 Handlebars 中,假设我有 names 的集合.我能怎么做 {{#each names}} {{position}} {{name}} {{/each}} 在哪里 {{position}}
这个问题在这里已经有了答案: Numbering rows within groups in a data frame (9 个回答) 4年前关闭。 我们如何在数据帧的每组中生成唯一的 ID 号?以下
我正在努力解决以下问题。我希望为给定的“一”序列创建一个计数器。例如,我有以下内容: 1 1 1 1 0 0 1 1 1 0 0 1 1 1 1 鉴于该序列,我希望为 1 的每个序列设置一个计数器直到
我正在努力解决以下问题。我希望为给定的“一”序列创建一个计数器。例如,我有以下内容: 1 1 1 1 0 0 1 1 1 0 0 1 1 1 1 鉴于该序列,我希望为 1 的每个序列设置一个计数器直到
我有一个jsfiddle here 这是一个简单的 JavaScript 函数,可以计算出设定的数字。 是否可以进行这种计数,但也保留一位小数 所以它算 1.1、1.2、1.3 等。 func
我正在构建一个计数器,当我按下鼠标时,它应该增加到 maxValue 并且减少不超过 0。我还可以选择将计数器重置为其初始值:0。另外,如果 maxValue 是偶数,它应该计数到该数字。但是,如果
所以我成功地为字母和单词构建了其他计数器,但现在我只能用这个来计算句子。我的代码如下,当我运行它时,它会返回很多错误消息: #include #include #include int main
Closed. This question is off-topic。它当前不接受答案。
我需要一个计数器,它会随着某些任务的完成而递增。我们只需要最后一小时的值,即窗口将移动而不是静态时间。 解决此问题的最佳方法是什么?我能想到的一种方法是拥有一个大小为 60 的数组,每分钟一个,并更新
我希望使用计数器来为我提供独特的引用系统。我想单击一个按钮,然后检查一个字段/文件中的最后一个数字,然后简单地向其添加 1,然后将其插入到屏幕上的字段中? 不确定执行此操作的最佳方法或具体如何执行此操
我有一个用 php 制作的表格,在该表格内我显示了数据库中的一些内容。我在每个 td 中创建了一个简单的按钮(类似于 Like),我希望每次点击它都会增加 1。这是带有按钮的行: echo "
如何将数据库中的值转换为可用于 if else 函数的 int 值? 例如:在我的数据库“armnumber = 3”中,如何在 if else 函数中使用它? 代码 string myConnect
我需要生成唯一的“ids”,问题是,它只能在 1 - 99999 之间。 “好”的是,它仅在与另一列组合时必须是唯一的。 我们有组,每个组都有自己的“group_id”,每个组都需要类似 unique
有这个简单的代码: UPDATE counter SET c= c +1 where id = 1; 并且它在开头的 c 字段中为 null 的情况下不起作用。它只有在已经输入了一些数字时才有效,也就
我正在尝试在 python 中构建一个具有闭包属性的计数器。以下工作中的代码: def generate_counter(): CNT = [0] def add_one():
我使用 CSS 来计算 HTML 文档中的部分: body {counter-reset: sect;} section:before { counter-increment: sect;
我是一名优秀的程序员,十分优秀!