在面向对象编程 Java 中使用数组和方法

声明:本页面是StackOverFlow热门问题的中英对照翻译,遵循CC BY-SA 4.0协议,如果您需要使用它,必须同样遵循CC BY-SA许可,注明原文地址和作者信息,同时你必须将它归于原作者(不是我):StackOverFlow 原文地址: http://stackoverflow.com/questions/16051105/
Warning: these are provided under cc-by-sa 4.0 license. You are free to use/share it, But you must attribute it to the original authors (not me): StackOverFlow

提示:将鼠标放在中文语句上可以显示对应的英文。显示中英文
时间:2020-10-31 21:44:34  来源:igfitidea点击:

using arrays & methods with Object Oriented Programing Java

javaarraysoopmethods

提问by George Putnam

I am learning Java, with that being said, my knowledge is still in the crawling phase of learning java. I have read about using objects in arrays which is very powerful. I am trying to edit this simple example class and test class to show who is the fastest driver, and what is the fastest speed. There are two ways I was thinking on how to solve this. One was find the maximum speed, and find what array number (e.g. array[2]).

I have managed to capture the highest speed in a loop, and the array number. putting it into a method, and then calling it is giving confusing me big time. Any help is much appreciated.

我正在学习 Java,话虽如此,我的知识仍处于学习 Java 的爬行阶段。我读过关于在数组中使用对象的文章,它非常强大。我正在尝试编辑这个简单的示例类和测试类,以显示谁是最快的驱动程序,以及最快的速度是多少。我想有两种方法来解决这个问题。一种是找到最大速度,并找到什么数组编号(例如数组[2])。

我设法在循环中捕获了最高速度和数组编号。将它放入一个方法中,然后调用它让我很困惑。任何帮助深表感谢。

error code I am getting
TestBikeWithArray.java:73: error: bad operand types for binary operator '>'
if (bikeRace[i] > bikeRace[0])
^
first type: Bike
second type: Bike
1 error

错误代码我得到
TestBikeWithArray.java:73: 错误:二元运算符 '>' 的错误操作数类型
if (bikeRace[i] > bikeRace[0])
^
第一种类型:Bike
第二种类型:Bike
1 错误

Tool completed with exit code 1
They are both Bike classes, I don't get it.

工具完成,退出代码 1
它们都是自行车类,我不明白。

public class Bike{

private String driver;
private int gear;
private int cadence;
private int speed;
private int id;

private static int numberOfBikes = 0;

public Bike(String theDriver, int startGear,int startCadence, int startSpeed){
    driver = theDriver;
    gear = startGear;
    cadence = startCadence;
    speed = startSpeed;
    numberOfBikes++;
    id = numberOfBikes;
}

public String getDriver() {return driver;}
public void setDriver(String d) {driver = d;}


public int getGear(){return gear;}
public void setGear(int g){gear = g;}

public int getCadence(){return cadence;}
public void setCadence(int c){cadence = c;}


public int getSpeed(){return speed;}
public void setSpeed(int s) {speed = s;}

public int getID() {return id;}

public static int getNumberOfBikes() {return numberOfBikes;}

// method to print out contents of object
public String toString ()
{
    StringBuffer sb = new StringBuffer();
    sb.append("\nDriver: " + driver);
    sb.append("\nGear: " + gear);
    sb.append("\nCadence: " + cadence);
    sb.append("\nSpeed: " + speed);
    sb.append("\nID: " + id + "\n");

    return (new String(sb));
} // end toString method

} // end class


main test bike


主要测试自行车

import java.util.Scanner;
import javax.swing.JOptionPane;

class TestBike
{
public static void main(String[] args)
{
    String message ="";

    Bike[] bikeRace = new Bike[10];

    bikeRace[0] = new Bike("Cersei Lannister", 0, 0, 0);
    bikeRace[1] = new Bike("Daenerys Targaryen", 10, 60, 22);
    bikeRace[2] = new Bike("Robb Stark", 21, 50, 15);

    //testing values
    //bikeRace[3] = new Bike("Melisandre", 31,90,155);
    //bikeRace[4] = new Bike("Margaery Tyrell", 2, 3, 100);

    bikeRace[0].setGear(3);

    for(int i=0; i < Bike.getNumberOfBikes(); i++)
    {
        System.out.println(bikeRace[i].toString());

        //testing, must use a proper function call!
        //System.out.println(bikeRace[i].getDriver());
    } // end for loop

    //find max speed & driver findTheFastestDriver

    //testing stuffs get all drivers
    /*for(int i=0; i < Bike.getNumberOfBikes(); i++)
    {
        System.out.println("Driver: " + bikeRace[i].getDriver());
    }

    //testing get all speeds
    for(int i=0; i <Bike.getNumberOfBikes(); i++)
    {
        System.out.println("Speed: " + bikeRace[i].getSpeed());
    } */

    //****************************************************************/
    //finding fastest bike without a method
    //fastest speed is 22
    /*int fastestBike = bikeRace[0].getSpeed();
    int fastestBikeIndex = 0;
    for(int i=0; i<Bike.getNumberOfBikes(); i++)
    {
        if (bikeRace[i].getSpeed() >= fastestBike)
        {
            fastestBike = bikeRace[i].getSpeed();
            fastestBikeIndex = i;
        }//end if
    }//end for
    System.out.println("fastest Bike Speed: " + fastestBike + " " + " Bike index of " + fastestBikeIndex);*/
    //********************************************************************


    int fastestBikeIndex = findTheFastestDriver(bikeRace);
    System.out.println("\nThe fastest driver is " + bikeRace[fastestBikeIndex].getDriver() + " and the speed of " + bikeRace[fastestBikeIndex].getSpeed() + " mph.");


    System.out.println("\nNumber of Bikes: " + Bike.getNumberOfBikes() + "\n");

} //end of main

public static int findTheFastestDriver(Bike[] bikeRace)
{
    int fastestBike = bikeRace[0].getSpeed();
    int fastestBikeIndex = 0;
    for(int i=0; i < Bike.getNumberOfBikes(); i++)
    {
        if (bikeRace[i].getSpeed() >= fastestBike)
        {
            fastestBike = bikeRace[i].getSpeed();
            fastestBikeIndex = i;
        }//end if
    }//end for
    return fastestBikeIndex;
}

} //end of class

code works :) so happy.

代码有效:) 太高兴了。

采纳答案by Patashu

if (bikeRace[i] > bikeRace[0])

if (bikeRace[i] > bikeRace[0])

change to

改成

if (bikeRace[i].getSpeed() > bikeRace[0].getSpeed())

if (bikeRace[i].getSpeed() > bikeRace[0].getSpeed())

Reasoning: You cannot numerically compare non-numerical objects.

推理:您不能在数字上比较非数字对象。