因此,我已经尝试查找导致此问题的原因,并将我的代码中任何可能的错误与其他代码进行比较,但我还没有找到任何其他导致该问题的原因。
我正试图调用内部类Pair来存储数据。
关于我的项目的快速信息
获取投票数据,并确定某人对此的政治立场。现在我只是想解析数据。示例数据
Rep1[tab]D[tab]-+-+-++---
我将其存储为…
ArrayList<Pair<String,String>>
所以rep1是ArrayList中的位置,然后D和-+-+-+--是一对。
但我在尝试实例化Pair类"非静态变量,不能从静态上下文引用"时遇到了问题
特别是
C:UsersStephanieDesktop>javac DecisionTree.java
DecisionTree.java:26: error: non-static variable this cannot be referenced from a static context
Pair pair = new Pair();
^
1 error
代码:
public class DecisionTree{
public static void main(String[] args)
{
ArrayList<Pair> data = new ArrayList<Pair>();
FileReader input = new FileReader ("voting-data.tsv");
BufferedReader buff = new BufferedReader(input);
String line = null;
while((line=buff.readLine())!=null)
{
Pair pair = new Pair();
String[] array = line.split("\t");
pair.setLabel(array[1]);
pair.setRecord(array[2]);
data.add(pair);
}
}
/**
* Private class to handle my inner data
*/
public class Pair
{
private String label;
private String record;
/**
* contructor
*@param String label, the label of the person's party
*@param String record, their voting record
*/
private Pair(String label, String record)
{
this.label = label;
this.record = record;
}
/**
* empty contructor
*/
private Pair()
{
}
/**
* get the label
*@return String label, the label of the person's party
*/
private String getLabel()
{
return label;
}
/**
* get the record
*@return String record, their voting record
*/
private String getRecord()
{
return record;
}
/**
* set the label
*@param String label, the label of the person's party
*/
private void setLabel(String label)
{
this.label=label;
}
/**
* set the record
*@param String record, their voting record
*/
private void setRecord(String record)
{
this.record=record;
}
}
}
谢谢!我觉得我错过了一些非常基本的东西,我已经很久没有使用Java 了
在Java中,非静态内部类与封闭类的实例相关联。这意味着示例中Pair
类的实例属于DecisionTree
的特定实例。您只能在DecisionTree
实例的上下文中创建它。不能在main()
方法中使用new Pair()
直接创建Pair
,因为该方法是静态的(因此,它与DecisionTree
的实例无关)。
如果您不希望这样,请使内部类static
:
public class DecisionTree {
// ...
public static class Pair {
// ...
}
}
制作Pair
static
,即:
public static class Pair
否则,就无法在main()
中构造Pair
对象,因为它是一个静态方法。内部类(与静态嵌套类相反)需要一个环绕的实例。
此外,您的评论说Pair
是私有的,但类标记为public
。如果你的意图是private
。
Pair是一个内部类。内部类的实例与它们所属的类的实例相关联,并且只能在父实例的上下文中创建。如果声明Pair-static,它将成为一个嵌套类,更像是一个常规类。封闭类只提供其名称。