英文: getting unexpected outputs in a question which asks to tell the day from date 问题 import java.io....
在类内部使用静态方法时没有输出(该类内部没有主函数)
英文: No output while using static methods inside a class(the class which has no main function in it) ...
方法没有被正确调用?! 卡路里应用程序
英文: Method not being called properly?! Calorie App 问题 package com.company; import java.util.Scanner;...
多个按钮的onClick函数
英文: onClick function for multiple buttons 问题 如何为多个按钮设置点击事件(或点击监听器)?原因是我不想为每个按钮编写相同的代码,唯一不同的变量只是每个按钮的...
为什么我的二进制转十进制的Java代码不起作用?
英文: Why my binary to decimal conversion is not working in java? 问题 我有这个方法,它可以将用户输入的二进制转换为十进制值。 主要方法:...
如何在同一个类中从一个方法传递参数值到另一个方法中
英文: How to pass parameters values from one method to another one in the same class 问题 import java.ut...
str.length; (vs) str.length()
英文: str.length; (vs) str.length() 问题 我在函数内部使用 length() 对字符串使用时遇到了“找不到符号”错误,但当我使用 length 时,错误消失了。我需要知...
Java make one method return an int OR a string and require a String and a String or an int and a String
英文: Java make one method return an int OR a string and require a String and a String or an int and a...
如何打印带有修改的printBoard?
英文: How I can print the printBoard with modification? 问题 我写了一个井字游戏。 这里我使用 char [][] board 创建了一个 3x3 ...
Java应用程序中的杂货订购逻辑与面向对象编程(OOP)
英文: Java application grocery ordering logic with OOP 问题 我正在进行一个杂货订购系统,并且在订单逻辑方面遇到了问题。 目前,程序会询问顾客想要订购...
31