gpt4 book ai didi

java - 我可以使用在 Java 数组中调用的方法的参数吗

转载 作者:行者123 更新时间:2023-11-29 03:34:50 25 4
gpt4 key购买 nike

这是在 main() 方法中:

Movie[] list = new Movie[6];

list[0] = new Animated(.25, 700.000, "Mulan", "Barry Cook", 1998, 15.000);
list[1] = new Animated(.23, 45.000, "TMNT", "Steve Barron", 1990, 12.000);
list[2] = new Documentary(12, 7.000, "Nixon", "Oliver Stone", 1995, 50.000);
list[3] = new Documentary(10, 4.500, "JFK", "Oliver Stone", 1991, 35.000);
list[4] = new Drama(3.500, 8.25, "Belly", "Hype Williams", 1998, 20.000);
list[5] = new Drama(4.500, 9.00, "42", "Brian Helgeland", 2013, 16.000);

System.out.print(menu());
System.out.print("Select and menu option 1-5: ");
choice = input.nextInt();
do
{
switch(choice)
{
case 1: movieList(list);
break;

我正在调用 movieList(list) 方法,该方法存在于 main 之外的类中:

public static void movieList(Movie[] a)
{
System.out.printf("\n\n%-10s %-10s %-10s %-10s %-10s", "TITLE", "YEAR",
"REVENUE", "PROFIT", "CATEGORY");
System.out.printf("\n\n%-10s", Movie[0].getTitle());
}

这是我在 case 1 中调用的方法,我一直在尝试使用一个参数,但在 Movie 指针处出现“找不到符号”错误。我一直在搜索,我开始认为我无法通过这种方式访问​​此值。

最佳答案

movieList 方法中的Movie[] 参数的名称是a,因此请尝试使用a[0]。 getTitle() 而不是 Movie[0].getTitle()。方法中的参数始终通过其名称而非类型进行访问。

关于java - 我可以使用在 Java 数组中调用的方法的参数吗,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16117051/

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