gpt4 book ai didi

java - 我无法弄清楚此错误消息(ArrayList BankAccount 代码)

转载 作者:行者123 更新时间:2023-12-01 13:45:49 25 4
gpt4 key购买 nike

我正在尝试练习明天的 Java 测试,但我不知道发生了什么。

import java.util.ArrayList;
public class BankAccount
{
public static void BankAccount(double x)
{
ArrayList<BankAccount> accounts = new ArrayList<BankAccount>();
BankAccount ted = new BankAccount(400);
BankAcconut bob = new BankAccount(300);
BackAccount carol = new BankAccount(500);
accounts.add(new BankAccount(300));
}
}

我不断收到一条错误消息,显示“BankAccount 类中的构造函数 BankAccount 无法应用于给定条款;必需:无参数;已找到:int;

我知道与你们正在做的事情相比,这只是小事,但我对此很陌生。提前致谢。

最佳答案

您尚未提供任何构造函数,因此 Java creates a default constructor ,没有参数,什么也不做。

提供一个单参数构造函数,该构造函数接受您提供的 int

关于java - 我无法弄清楚此错误消息(ArrayList BankAccount 代码),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20385072/

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