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



我一直在玩链表,我想知道是否可以在链表节点中有一个字符串数组。我一直在尝试让它以与字符串"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;
    }
}

您可以在链表中有一个String数组,但一旦分配了数组,就不能扩展它。

如果你想要一些可扩展的东西,你应该使用ArrayList

相关内容

  • 没有找到相关文章

最新更新