How Can I Show My Doubly LinkedList Data in a JTable?
问题 I've been searching for many hours on how to add linked list data to a Jtable but none of the results I found were satisfying. I'm trying to teach myself java so it's a bit difficult for me. Anyways, here is my code. I know it's probably really bad so please be patient with me and help me in making it better. public class node { public node next,pre; public String name; public double price; public node (String n,double p){ this (n,p,null,null); } public node (String n,double p, node ne,node