gpt4 book ai didi

java - 我的银行账户计划中的存款

转载 作者:行者123 更新时间:2023-12-01 12:33:01 24 4
gpt4 key购买 nike

public void deposit(double amount)
{
balance += amount;
}

这就是我在另一个类(class)中所说的。我希望能够向此帐户存入 100 美元。

Account acct1;

acct1 = new Account(500, "Joe", 1112);

我需要做什么才能存入此账户?我尝试了不同的变体(如下),但我对该怎么做感到困惑。

initBal = new deposit(100);

帮忙?

最佳答案

您想要执行的操作的语法是:

Account acct1;                           //Creating a reference of type Account
acct1 = new Account(500, "Joe", 1112); //Instantiating a new Account object,
//giving a reference to that object to acct1
acct1.deposit(100); //Calling the deposit method in class Account
//On the object referred to by acct1

更一般地说,调用对象(具有该方法的类型)的方法:

<object_reference>.<method_name>(<parameter 1>, <parameter 2>, ...);

关于java - 我的银行账户计划中的存款,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25792594/

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