gpt4 book ai didi

java - 调用方法错误

转载 作者:行者123 更新时间:2023-11-30 10:51:52 24 4
gpt4 key购买 nike

我试图为 if-else 语句回调此方法,但我不断收到诸如“.class is expected”之类的错误。

这是我的代码:

public static void display(String[] date,int index,int arraylength)
{
for (index=0;index<arraylength;index++)
{
System.out.println("The date ["+index+"]: "+date[index]);
}
//this is the method which is for display an array element
if (pass.equals("BERKAT123"))
{
display(String[] date;int index;int arraylength);
}
else
{
System.out.println("Incorrect password");
start();
}
}
//this is where the method will be call...

好像我搞砸了参数。谁能告诉我如何编写正确的参数?

最佳答案

我没看清楚你的问题。但据我所知,你需要像这样定义你的“显示”功能 -

public static void display(String[] date){ //here take the date array as the only parameter
for(int index=0;index<date.length;index++){
System.out.println("Date with index " +index+ " is: "+date[index]);
}
}

现在在“main”函数中根据您的要求和您需要的所有其他变量填充 String date[] 数组。然后检查您的 if-else 条件并像这样调用其中的“显示”函数 -

if (pass.equals("BERKAT123")){
display(date);
}

关于java - 调用方法错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34562469/

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