英文: Java version of Python's def function 问题 虽然我最擅长Python,但最近我开始学习Java。我想知道在Java中是否有类似于Python的de...
在一个函数中使用两组常量。
英文: use two sets of constants in one function 问题 我有一个函数,在两种不同的情况下我想要使用两组不同的常量。例如:在其中一种情况下,我想要使用 priv...
为什么矩阵加法在这段代码中无法正常工作?
英文: Why is matrix addition not working in this code? 问题 import java.util.*; class matrix { int n1, n...
在Java中的Oracle `next_day`函数的等价方法是什么。
英文: Oracle next_day function equivalent in JAVA 问题 /** * @param date * @param weekDay * @return Give...
Java函数未返回预期值
英文: Java function is not returning expected value 问题 程序中的一个错误。我正在为我的Java作业编写此程序。 目标: 该程序应该接受两个参数,并找到...
将函数映射到数组元素上
英文: Mapping functions to elements of array 问题 我有一个关于在Java中映射事物的一般性问题。我并没有完全卡住,但我觉得我的方法不够优美,如果想象一下我的小...
增加一个函数中count的值,并在另一个函数中对count使用if条件。
英文: Increment the value of count in one function and use if condition on count in another function 问...
在Java中,在函数内部实例化一个类。
英文: Instantiate a class inside a function in Java 问题 我正在尝试创建一个函数,该函数将一个2D数组填充满一些对象。我的函数如下: void func...
在伪代码中表达两个变量之间的关系如何?
英文: Expressing relationship between two variables in pseudocode? 问题 我有一些我正在尝试分析的伪代码: ```python publi...
方法并发
英文: Method concurrency 问题 方法2是否总是在方法1完全执行之后才开始? 英文: Let's say I have two methods in a method void he...
58