gpt4 book ai didi

java - DLL 实现&无法产生静态引用错误

转载 作者:行者123 更新时间:2023-12-01 16:20:57 24 4
gpt4 key购买 nike

您好,我收到一条错误消息“无法对非静态字段进行静态引用”

在下一个代码的粗体行中,我不知道如何修复它,并且我的实现对链表是否正确,因为我知道我希望它是一个双向链表

import java.util.Scanner;
import java.util.LinkedList;
import java.lang.Number;
public class chainLadder {
    static Scanner s = new Scanner (System.in);

    public   LinkedList<Object> readData() {
         LinkedList<Object> listData = new LinkedList();

         Integer cost=0;
        
        System.out.println("how many years are you calculating");
            int numY=s.nextInt();
while(numY!=0) {    
    
 
     int i =1;
         System.out.println("please Enter the year"+i+" to calculate from ");
             String year = s.next();
                     listData.add(year);
                     listData.add(">"); // what comes after is the cost and before is the year

                     System.out.println("enter the costs of year"+year+"/n  enter ( -1 ) when done ");

                     while(cost != -1) {
                         cost = s.nextInt();
                         if(cost == -1)
                             break;
                         listData.add(cost);
                         System.out.println("next");
}
                     listData.add("<"); // what comes before is the cost and after  is the year


   numY--;// going down till we finish all the years
   i++;
  

}//end of while
    return listData;
    }//end method readData
    
    
}//end class

最佳答案

通常,当您收到错误时,您应该包含编译器标记为包含错误的行:) - 只是一个提示。

你的问题是“静态”是一个有点奇怪的概念,至少相对于学习 java 的前几周来说是这样。我建议你避免它。通过使用它作为骨架来做到这一点:

class MyApp {
public static void main(String[] args) throws Exception {
new MyApp().go();
}

void go() throws Exception {
// your code goes here
}
}

go方法String[] args param 如果您需要命令行参数。然后,除了 main 之外,不要将任何东西设为静态。这一定是。

静态当然有用,但也许不是一个特别值得开始你的java学习的概念,如果你不理解它,它只会引起无尽的困惑。

如果您坚持不进行此更改,则必须调用 readData chainLadder 实例上的方法,所以:new chainLadder().readData(); ,不是chainLadder.readData(); .

拥有一个“异构”列表(包含不同概念的列表;您的列表既包含年份值,也包含作为单独对象的成本)非常不像 java。

您应该创建一个代表年份/成本对的类,并将其设为 List<YearInfo>或诸如此类的东西,或者更有可能您想要一张将年份映射到成本的 map ,因此, Map<Integer, Integer> .

您正在使用现有的链表实现,而不是编写自己的链表实现。如果您因为家庭作业需要而需要双向链表,那么重点是您自己编写整个实现,而不是使用 java.util.LinkedList以便您了解链表是如何工作的。现实生活中没有任何要求是“它..必须..是一个双向链表!”。鉴于与人类相关的时间只有几千年,您的列表永远不会包含足够的项目。因此,ArrayList是正确的答案,即使它在算法上看起来不合理。也就是说,如果您想要一个列表 - 最有可能 Map如果这不是家庭作业,这就是您正在寻找的内容。

关于java - DLL 实现&无法产生静态引用错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62282168/

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