Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
这个问题并不太难:我如何最好地在 Java 中实现一个表。
我希望在数据库中有类似表的东西。命名的列和编号的行。我的价值观是Integer。
Integer
我最初的想法:LinkedHashMap<String, ArrayList<Integer>>
LinkedHashMap<String, ArrayList<Integer>>
但是有没有更好的方法呢?
“更好”是什么意思?这取决于你需要做什么。
你可以建立