gpt4 book ai didi

java - 在 Java 中使用 BiIntPredicate

转载 作者:行者123 更新时间:2023-11-30 06:50:20 24 4
gpt4 key购买 nike

我有以下界面

public interface BiIntPredicate
{
public boolean test(int x, int y);
}

并且有这个类(class)

public class Class
{
public static final int BOUND=5;

public static void printFigure(BiIntPredicate b) {
for (int i=1; i<=BOUND; i++) {
for (int j=1; j<=BOUND; j++) {
if (b.test(i,j)) System.out.print("*");
else System.out.print(" ");
}
System.out.println();
}
}
}

我正在使用 blueJ,并试图找出要输入的参数以打印出该图。

*****
*****
*****
*****
*****

我不明白如何输入参数来打印出来。

最佳答案

要无条件打印星号,请这样调用:

printFigure((i, j) -> true);

关于java - 在 Java 中使用 BiIntPredicate,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42937796/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com