英文: 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) ...
函数的参数
英文: Arguments of a function 问题 我需要一个具有更多参数的函数,如下所示: private GroupLayout function(Container host, Cla...
如何创建动态方法?
英文: How to create Dynamic Method? 问题 我有一些方法,每个方法都检查相同的一组条件,如果条件都不满足,则返回null值,否则返回不同类的对象。 有没有办法不必为每个函...
这段代码的时间复杂度是否为 O(log^2(n))?
英文: Has this snippet O(log^2(n)) complexity? 问题 如果不是的话,它将是哪种复杂度?谢谢:```java public static int f(int n...
在Java中使用字符串库查找给定字符串中子字符串的最大连续重复次数
英文: Maximum consecutive repeats of a substring in a given string using string library in Java 问题 我尝试...
在Java中是否有一个 “do-for” 循环?
英文: Is there a "do-for" loop in java? 问题 有没有一个循环,在执行代码块之后检查条件,而不是之前?我想要的是类似于do-while循环的东西。...
如何从字符串中删除所有空格?
英文: How do I remove all whitespaces from a string? 问题 I'm trying to remove all whitespaces from a st...
在Java中,是否可以修改作为函数参数传递的属性值?
英文: Is it possible to modify the value of an attribute sent in argument of a function in Java? 问题 I'...
模拟器在调用函数时抛出异常(Android Studio)。
英文: Emulator throws exception (android studio) when function is called 问题 I'm coding a game on andro...
58