所以我正在从事这个项目,并且我无法将变量从一个类移到另一个类。这个小软件的目标是让用户输入2条信息,一条是字符串,另一条是int。我还有2个类,一个用于检索信息,另一个用于计算信息。 这是第一个名为Software的课程:
import java.util.Scanner;
public class Software
{
public Scanner softwareName;
public Scanner devicesAmount;
public Software()
{
devicesAmount = new Scanner(System.in);
softwareName = new Scanner(System.in);
}
/**
*Gets the information from the user to later on process
*/
public void InfoGet()
{
Devices findDevices= new Devices();
Devices findNumber= new Devices();
String softwareName;
int devicesAmount;
Scanner sc= new Scanner(System.in);
System.out.println("Welcome to the Software License Calculator");
System.out.println("Please type in the name of the Software:");
softwareName = sc.nextLine();
System.out.println("");
System.out.println("Please type in the number of devices that have the software:");
devicesAmount=sc.nextInt();
findDevices.Calculations(devicesAmount);
findNumber.getNewDevices();
sc.close();
System.out.println(softwareName+ " & "+ findNumber);
}
}
这是名为Devices的第二个类:
public class Devices
{
public int NewDevices;
public String softwareName;
/**
* Gets number of Devices to preform the calculations of removing 1000 users
*/
public static void Devices()
{
Software getDevices= new Software();
getDevices.InfoGet();
}
public void Calculations(int devicesAmount){
if (devicesAmount>=1000){
NewDevices= devicesAmount - 1000;
}
else{
NewDevices=devicesAmount;
}
}
}
答案 0 :(得分:1)
dunno为什么我在我的移动设备上以用户身份发帖,但重点是:
首先在类 Software 中你有两个对象“Device”,在MVC结构之后,你应该只为视图类声明一个控制器对象,开始我建议你只声明1软件类的设备,像这样,我们将保护变量只是因为它们应该是私有的或受到保护以尊重封装:
public class Software {
protected Devices devices;
protected Scanner softwareName;
protected Scanner devicesAmount;
... }
我建议您对Devices类变量执行相同的操作。
然后我们将为Devices类构建一个合适的构造函数,以便我们可以通过类移动值:
public Devices (String softwareName) {
this.softwareName = softwareName;
this.newDevices = 0;
}
因此我们可以在Devices类中获得此值。然后我们需要为 newDevices 添加getter并将 toString 方法添加到Devices类中,以便打印该对象。
public int getNewDevices() {
return newDevices;
}
public String toString() {
return softwareName + " & " + newDevices;
}
然后我们将在Software InfoGet 方法中移动一些东西来正确构建设备并打印它。
public void InfoGet() {
String softwareName;
int devicesAmount;
Scanner sc= new Scanner(System.in);
System.out.println("Welcome to the Software License Calculator");
System.out.println("Please type in the name of the Software:");
softwareName = sc.nextLine();
System.out.println("");
System.out.println("Please type in the number of devices that have the software:");
devicesAmount=sc.nextInt();
devices = new Devices(softwareName); // So we initialize the object.
devices.Calculations(devicesAmount);
sc.close();
System.out.println(devices.toString()); // Here we just call the toString() method we build to print the values.
}
我们没有使用 getNewDevices()方法,但是为控制器类构建getter和setter通常是一种很好的做法;)。
答案 1 :(得分:0)
如果您想以“标准”的方式构建您的proyect,我强烈建议您阅读MVC(模型 - 视图 - 控制器)。
要解决您的问题,您可以为每个类添加需要移动的每个变量的getter和setter,以便您可以在类之间移动值。
对于setter来说就像这样:
public void setValue(Object value) {
this.value = value;
}
这对于吸气者来说:
public Object getValue() {
return this.value;
}
答案 2 :(得分:0)
扫描程序,设备,软件,类和具有相同名称大写或小写的对象之间的混淆。
我应该建议您清楚地重命名类和变量。
一些进一步的建议:
为什么要将Scanner作为变量?这不是数据,而是获取它的媒体。
为什么要注意保存数据?像softwareName(扫描仪和字符串)。
我会
添加两个变量(softwarename和amount),private
保留他们
添加方法以设置和获取
答案 3 :(得分:-1)
Calculations()
(和其他人)不会编译。可能你需要为该方法添加一个参数,你就完成了(?):
public void Calculations(int devices2){
...