如何在链表节点中创建字符串数组

时间:2015-11-09 12:13:07

标签: java linked-list

我一直在玩链接列表,我想知道链接列表节点中是否可以有一个字符串数组。我一直试图让它的工作方式与字符串" name"相同,这样我就可以根据需要在数组中插入更多的字符串

class Test1 {
    public static void main(String[] args) {
        Node n = new Node("Ace");
    }
}

class Node {
    private Node next;
    private String name;
    private String[] data;

    public Node(String s1) {
        s1 = name;
        next = null;
    }

    public String[] getArray() {
        return array;
    }

    public void setData(String s1, int point) {
        name = s1;
        array
    }

    public Node getNext() {
        return next;
    }

    public void setNext(Node nextVal) {
        next = nextVal;
    }
}

1 个答案:

答案 0 :(得分:1)

您可以在链接列表中使用String数组,但是一旦分配了数组,就无法扩展它。

如果您想要具有可扩展性,可以使用ArrayList