I know we have to use AWT thread for all table model update operations. Under the single AWT thread, any table model will be thread-safe. Why DefaultTableModel picks thread-safe Vector as its data stucture, which slower than other data structures like ArrayList?
feedback
|
|
Swing was available for, but not included in, Java 1.1. | |||
|
feedback
|
|
Swing first appeared before Java 1.2, so before This is exactly the kind of reason for thinking about encapsulation carefully - it lets you change the internals later on. (Admittedly getting serialization right would have been interesting, but that's a story for another day...) | |||
|
feedback
|
|
The reason has already been explained above (Swing existed before java.util Collections library). The bottom line is: never use | |||||||||||||||||||||
feedback
|
|
I'm going to guess that the Here are a few facts:
Furthermore, the use of a | |||||||
feedback
|