gpt4 book ai didi

java - 如何在 java 中只使用特定的类对象值?

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

我仍在学习 Java 并发现它非常困难,而且我已经坚持了一段时间。

假设您有一个类,其构造函数有点像这样:

public Fruit(String Name, String Type, double Price, int Stock) {
this.Name = Name;
this.Type = Type;
this.Price = Price;
this.Stock = Stock;
}

然后说我们从 this 得到这个对象,例如:

Fruit fruit1 = new Fruit("Apple", "Apple", "0.45", 23);

根据这些信息,我想编写一个函数,用户可以输入该函数然后点餐。我如何使用此类对象中的信息在函数中使用?

最佳答案

通过简单地稍后回读这些字段,可能是直接的,或者使用您添加的 getter 方法,例如:

if (someFruit.getName().equals(theNameOfSomeFoodOrderedByCustomer)) {
System.out.println("you ordered " + someFruit.getName() + " that will cost you " + someFruit.getPrice());

从你的角度来看,你可能想要更多地研究 java getter/setter 方法,以查看相关示例。

关于java - 如何在 java 中只使用特定的类对象值?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54620676/

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