gpt4 book ai didi

java - 尝试理解 true/false 格式的 set 方法的数据验证

转载 作者:行者123 更新时间:2023-11-30 03:44:26 24 4
gpt4 key购买 nike

我目前正在开发一个项目,该项目涉及创建对象数组(在本例中,是来自创建的 ToolItem 类的硬件工具),然后创建一个类文件来操作这些数据。我现在创建的类名为 HardwareStore,具有搜索、插入和删除数组中项目的私有(private)数据成员的方法。使用前面提到的 ToolItem 类中名为 assign() 的方法,我为每个数据成员调用 set 方法,并将它们分配到数组中的一个位置。分配看起来像:

public void assign(int quality, String name, int id, int numInStock, double price)
{
setQuality(quality);
setToolName(name);
setID(id);
setNumberInStock(numInStock);
setPrice(price);
}

我的插入方法当前如下所示:

public int insert(int quality, String name, int id, int numInStock, double price)
{
//testing the unique ID passed by the user,
//making sure there isn't an object in the
//array with the same ID
testArray = searchArray(id);

//array holds a max of 10 objects
if (numberOfItems == 10)
{
System.out.println("Array is full");
return 0;
}
//-1 is sentinel value from search method,
//telling me there isn't an object with the
//same specified ID
else if (testArray == -1)
{
for (index = 0; index < toolArray.length; index++)
{
if (toolArray[index].getToolID() == 0)
{
toolArray[index].assign(quality, name, id, numInStock, price);
numberOfItems++; //counter for array
return 1;
}
}//end for loop
}
return -1; //sentinel value telling me there was a dupe ID

}//end insert

我应该以这种方式使用 boolean 变量来验证 toolArray[index].assign(quality, name, id, numInStock, Price);:

boolean oK = toolArray[index].assign(quality, id, numInStock, price);

如果oK == true,我就会增加数组中的项目数。为了使其工作,我需要 assign() 的返回类型为 boolean。这是向我解释的:

是的,您需要一个分配方法。涉及的所有内容都是调用“设置”值到指定位置。分配方法将返回一个值,具体取决于该值是否已分配/插入。您需要检查 oK 的值以确保它是 true 或 false。

我的问题是,我不知道如何将 assign() 返回类型更改为 boolean 并使该方法正常工作。我的第一个想法是:

if (setQuality(quality) == true)
{
return true;
}
else if (setToolName(name) == true)
{
return true;
}
else
return false;

但这显然不起作用,并会导致几个编译器错误:/我只是不明白这种数据检查背后的逻辑。如果有人理解这一点并可以帮助我,我将不胜感激!

最佳答案

好吧,考虑到您的分配方法仅包含将原始值或字符串分配给内部字段的setter方法,因此不会出现太多问题,因此实现您想要的最简单的方法就是返回true 位于 assign() 末尾:

public boolean assign(int quality, String name, int id, int numInStock, double price)
{
setQuality(quality);
setToolName(name);
setID(id);
setNumberInStock(numInStock);
setPrice(price);
return true;
}

现在,如果您的参数有非法的特定值,例如 id 的负整数或名称的 null,您可以在每个 setter 方法中添加一个检查非法值。如果这些值通过,您可以抛出 Exception,例如 IllegalArgumentException,或者您也可以根据需要创建自定义异常。以下是查找 setID() 方法的方式:

void setID(int id) throws IllegalArgumentException {
if(id < 0) {
throw new IllegalArgumentException();
} else {
this.id = id;
}
}

然后,假设所有 setter 都抛出相同的异常,您可以向 assign() 方法添加一个 try/catch block 并返回 false 如果有任何 setter 方法收到非法值。代码如下:

public boolean assign(int quality, String name, int id, int numInStock, double price)
{
try {
setQuality(quality);
setToolName(name);
setID(id);
setNumberInStock(numInStock);
setPrice(price);
} catch (IllegalArgumentException iae) {
return false;
}
return true;
}

如果您的方法由于某种原因需要抛出不同的异常,那么您可以在 catch block 中分隔异常,例如:

catch (ExceptionOne e1 | ExceptionTwo e2 ....) {
return false;
}

在这种情况下使用异常是可以的,因为这些值之一无效是一种系统逻辑故障,应该注意。非法的 ID 或名称会破坏您的系统逻辑,因此应使用适当的异常进行处理。另外,这可能永远不会发生或很少发生,因此它实际上是程序逻辑的“异常”。

但是,例如,如果您有一个函数要求用户提供他们想要的工具的名称,而用户给了您一个无效的工具名称,则您不需要在那里抛出异常,因为这不会让你的系统出现错误,那只是用户不知道如何使用系统或者只是不知道他的工具名称。在这种情况下,您可以只返回一个错误值,例如 nullfalse

关于java - 尝试理解 true/false 格式的 set 方法的数据验证,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26090735/

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