繁体   English   中英

Java中的循环队列

[英]Circular Queue in Java

我在Java中实现了一个循环队列,该队列将接受对象(雇员)作为条目。 现在,我有了一种编辑特定对象的姓氏的方法,但是即使导入所有必需的包,我也无法以某种方式从CQueue类访问Employee类中的姓氏设置方法。 这是代码:

//PACKAGES IMPORTED
package linearstructures;
import dataobjects.*;
import linearnodes.*;

public class CQueue{
    Node front, rear, temp;
    boolean full = false;
    String key;

public AnyClass searchKey(String key)
{
    temp = rear.next; // first node

    do
    {
        if (temp.obj.getKey().equals(key))
            return temp.obj;
        temp = temp.next;
    } while (temp != rear.next);

    return null;
}

public AnyClass editObject(String key){
    int choice, newSeqNo;
    double newPay;
    boolean exit = false;
    Employee etemp = new Employee(); //INCLUDED THIS AFTER EDIT
    searchKey(key);

    if(searchKey(key) != null){
        temp.obj.getData();
        System.out.println();
        System.out.println("------------------------");
        System.out.print("Enter new Salary: ");
        newPay = sc.nextDouble();
        System.out.println("------------------------");
        System.out.println();
        etemp.setPay(newPay); //INCLUDED THIS AFTER EDIT
    else
        System.out.println("NO OBJECT WAS FOUND!");
    return null;
}
}

Employee类别:

package dataobjects;

public class Employee extends AnyClass
{
public String surname;
public double pay;

public Employee(){}

public Employee(int seqNo, String surname, double pay)
{
    super(seqNo);
    this.surname = surname;
    this.pay = pay;
}

public double getSalary()
{
    return pay;
}

public void setPay(double newPay)
{
    pay = newPay;
}

public String getData()
{
    return super.getData() + ", Surname: " + surname + ", Pay: " + pay;
}

public String getKey()
{
    return surname;
}
}

AnyClass类:

package dataobjects;

public class AnyClass
{
public int seqNo;

public AnyClass(){}

public AnyClass(int seqNo)
{
    this.seqNo = seqNo;
}

public int getseqNo()
{
    return seqNo;
}

public void setseqNo(int seqNo) {
    this.seqNo = seqNo;
}

public String getData()
{

    return "Sequential Number - " + seqNo;
}

public String getKey()
{
    return Integer.toString(seqNo);     
}

public void edit(){}
}

Node类别

package linearnodes;
import dataobjects.*;

public class Node{
    public AnyClass obj;
    public Node next;
    public Node(AnyClass obj){
        next = null;
        this.obj = obj;
    }
}

for include pay“ etemp.setPay(newPay);” 您将把返回对象更改为Employee。

public Employee editObject(String key){

Employee etemp = new Employee(); //INCLUDED THIS AFTER EDIT
....
....
etemp.setPay(newPay); //INCLUDED THIS AFTER EDIT
return etemp;
}

因为AnyClass还没有“公共双重支付”;

您的editobject方法可能是这样的:

public AnyClass editObject(String key){
    // ...

    // Store your search result to avoid performing searchKey twice
    AnyClass searchResult = searchKey(key);

    if( searchResult != null ){
        // Check if searchResult is an Employee object
        if( searchResult instanceof Employee )
            // Cast AnyClass to Employee
            Employee empl = (Employee) searchResult;

            // Your logic here...

            // Set properties of the Employee object
            empl.setPay(newPay);

            // ...

           return empl;
        }
        // Add 'else if' here, if you need to manage other Object types
        // otherwise you can join previous if conditions 
    }
    else
        System.out.println("NO OBJECT WAS FOUND!");
    return null;
}

您的代码创建了一个新的本地Employee实例,该实例在方法结束时终止,其值将丢失,因为没有对象指向它。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM