- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试打印数组的内容,该数组已从文本文件分配了值。然而我遇到了两个错误,任何帮助将不胜感激。我的代码是:
import java.util.*;
import java.io.*;
public class Driver {
public static void main(String[] args) throws FileNotFoundException {
GeometricObject g = null;
File diskFile = new File("src/file.txt");
Scanner diskScanner = new Scanner(diskFile);
while (diskScanner.hasNext()) {
String list = diskScanner.nextLine();
g = recreateObject(list);
}
diskScanner.close();
}
private static GeometricObject recreateObject(String data) {
String[] list = data.split(",");
String geoObject = list[0];
if (geoObject.equals("Circle")) {
String color = list[1];
boolean filled = Boolean.valueOf(list[2]);
double radius = Double.valueOf(list[3]);
return new Circle(color, filled, radius);
}
if (geoObject.equals("Rectangle")) {
String color = list[1];
boolean filled = Boolean.valueOf(list[2]);
double length = Double.valueOf(list[3]);
double width = Double.valueOf(list[4]);
return new Rectangle(color, filled, length, width);
}
return null;
}
}
但是,我必须创建三个新类来消除错误。该分配要求该方法完全像这样编写 - private static GeometricObject recreateObject(String data) 。我不确定为什么需要创建新类来消除这些错误。
public class Circle extends GeometricObject
{
}
public class GeometricObject
{
}
public class Rectangle extends GeometricObject
{
}
我仍然有两个错误:
如果有任何帮助,我将不胜感激,因为我已经尝试了大约 4 个小时,但没有成功。
我的 file.txt 包含
Circle,red,false,4.0
Circle,blue,true,2.0
Circle,blue,true,10.0
Rectangle,yellow,true,10.0,6.0
Rectangle,green,true,5.0,11.0
Rectangle,red,true,20.0,15.0
这是实际的分配
The goal is to read persistent data from disk, use the data to recreate a collection of geometric objects, and
apply a series of operations on them as indicated below.
1. Read each disk record, create the corresponding object (Circle or Rectangle), add the object to a
dynamic array called list.
2. Nicely print the contents of the list (indicate position and content).
3. Write a method to find the position on the list holding the largest element (biggest area of them all).
4. Print the position and data (including area) of the selected object (main method).
5. Write a method to find the position on the list holding the largest element of a given color (try “RED”).
6. Print the position and data (including area) of the selected object – if any!
The following are signatures of methods you need to write
private static GeometricObject recreateObject(String data)
[Needed in step 1]
private static void showObjects(ArrayList<GeometricObject> list)
[Needed in step 2]
private static int findPositionLargestObject(ArrayList<GeometricObject> list)
[Step 3]
private static int findPositionBiggestColor(ArrayList<GeometricObject> list,
String searchColor) [Step 5]
private static int findPositionSmallestCircle(ArrayList<GeometricObject> list)
[Step 7]
最佳答案
哎呀,你的 Circle 类没有没有构造函数,这意味着它只有默认的无参数构造函数:
public Circle() {
}
因此,错误消息确切告诉您出了什么问题——您正在尝试使用不存在的构造函数。如果您想为需要 3 个参数的类调用构造函数,则必须为该类提供 1 个参数。
public class Circle extends GeometricObject {
// you'll need fields here
public Circle(String color, boolean somethingNotSureWhat, double radius) {
// call the super class's constructor if it takes parameters
// here set your fields that are not part of the super class
}
}
<小时/>
最重要的是——无需猜测,因为有大量资源可以向您展示如何使用和创建构造函数,包括:
<小时/>编辑
- Read each disk record, create the corresponding object (Circle or Rectangle), add the object to a dynamic array called list.
您的说明告诉您,您将需要创建并填写 ArrayList<GeometricObject>
。你的ArrayList在哪里?
- Nicely print the contents of the list (indicate position and content).
这告诉您,您的所有类(class)都需要一个像样的 toString()
方法允许简单、干净的输出。
- Write a method to find the position on the list holding the largest element (biggest area of them all).
抽象的 super GeometricObject 类将需要 abstract public double getArea()
方法,每个子类都需要实现该方法,以便它返回一个计算区域。然后,您需要创建一个静态方法来迭代 ArrayList,找到列表中最大的区域。
- Print the position and data (including area) of the selected object (main method).
上面的方法应该返回列表中最大的 GeometricObject,然后您需要输出它的属性。
- Write a method to find the position on the list holding the largest element of a given color (try “RED”).
另一种方法,与上面的方法类似,但它同时查看getColor()
返回的颜色字符串。和 getArea()
返回的 double .
- Print the position and data (including area) of the selected object – if any!
不言自明
The following are signatures of methods you need to write
以下内容都是不言自明的
所以,是的,您将需要三个类,一个具有 abstract public double getArea();
的抽象 GeometricObject。方法签名,它具有名称字符串(实际上可能不是必需的)、颜色字符串、 boolean 字段以及接受名称、颜色和 boolean 值的构造函数(尽管同样,名称可能不是必需的,因为该字符串告诉您使用哪个子类)。然后,您将需要两个子类,每个子类都有自己的字段,圆形的双半径字段,矩形的双倍 sideA 和 sideB,以及接受此信息以及父类(super class)构造函数所需信息的构造函数。
关于java - 构造函数 Circle(String, boolean, double) 未定义,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32812475/
C语言sscanf()函数:从字符串中读取指定格式的数据 头文件: ?
最近,我有一个关于工作预评估的问题,即使查询了每个功能的工作原理,我也不知道如何解决。这是一个伪代码。 下面是一个名为foo()的函数,该函数将被传递一个值并返回一个值。如果将以下值传递给foo函数,
CStr 函数 返回表达式,该表达式已被转换为 String 子类型的 Variant。 CStr(expression) expression 参数是任意有效的表达式。 说明 通常,可以
CSng 函数 返回表达式,该表达式已被转换为 Single 子类型的 Variant。 CSng(expression) expression 参数是任意有效的表达式。 说明 通常,可
CreateObject 函数 创建并返回对 Automation 对象的引用。 CreateObject(servername.typename [, location]) 参数 serv
Cos 函数 返回某个角的余弦值。 Cos(number) number 参数可以是任何将某个角表示为弧度的有效数值表达式。 说明 Cos 函数取某个角并返回直角三角形两边的比值。此比值是
CLng 函数 返回表达式,此表达式已被转换为 Long 子类型的 Variant。 CLng(expression) expression 参数是任意有效的表达式。 说明 通常,您可以使
CInt 函数 返回表达式,此表达式已被转换为 Integer 子类型的 Variant。 CInt(expression) expression 参数是任意有效的表达式。 说明 通常,可
Chr 函数 返回与指定的 ANSI 字符代码相对应的字符。 Chr(charcode) charcode 参数是可以标识字符的数字。 说明 从 0 到 31 的数字表示标准的不可打印的
CDbl 函数 返回表达式,此表达式已被转换为 Double 子类型的 Variant。 CDbl(expression) expression 参数是任意有效的表达式。 说明 通常,您可
CDate 函数 返回表达式,此表达式已被转换为 Date 子类型的 Variant。 CDate(date) date 参数是任意有效的日期表达式。 说明 IsDate 函数用于判断 d
CCur 函数 返回表达式,此表达式已被转换为 Currency 子类型的 Variant。 CCur(expression) expression 参数是任意有效的表达式。 说明 通常,
CByte 函数 返回表达式,此表达式已被转换为 Byte 子类型的 Variant。 CByte(expression) expression 参数是任意有效的表达式。 说明 通常,可以
CBool 函数 返回表达式,此表达式已转换为 Boolean 子类型的 Variant。 CBool(expression) expression 是任意有效的表达式。 说明 如果 ex
Atn 函数 返回数值的反正切值。 Atn(number) number 参数可以是任意有效的数值表达式。 说明 Atn 函数计算直角三角形两个边的比值 (number) 并返回对应角的弧
Asc 函数 返回与字符串的第一个字母对应的 ANSI 字符代码。 Asc(string) string 参数是任意有效的字符串表达式。如果 string 参数未包含字符,则将发生运行时错误。
Array 函数 返回包含数组的 Variant。 Array(arglist) arglist 参数是赋给包含在 Variant 中的数组元素的值的列表(用逗号分隔)。如果没有指定此参数,则
Abs 函数 返回数字的绝对值。 Abs(number) number 参数可以是任意有效的数值表达式。如果 number 包含 Null,则返回 Null;如果是未初始化变量,则返回 0。
FormatPercent 函数 返回表达式,此表达式已被格式化为尾随有 % 符号的百分比(乘以 100 )。 FormatPercent(expression[,NumDigitsAfterD
FormatNumber 函数 返回表达式,此表达式已被格式化为数值。 FormatNumber( expression [,NumDigitsAfterDecimal [,Inc
我是一名优秀的程序员,十分优秀!