JTable 中的选择模式?
我无法理解 JTable
中 multiple_selection_interval
和 single_interval_selection
之间的区别。
table.setSelectionMode(ListSelectionModel.SINGLE_INTERVAL_SELECTION);
接下来,就是
table.setSelectionMode(ListSelectionModel.MULTIPLE_SELECTION_INTERVAL);
这些有什么区别?
I couldn't understand the difference between multiple_selection_interval
and single_interval_selection
in JTable
.
table.setSelectionMode(ListSelectionModel.SINGLE_INTERVAL_SELECTION);
next, is
table.setSelectionMode(ListSelectionModel.MULTIPLE_SELECTION_INTERVAL);
What's the difference these?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用
ListSelectionModel.SINGLE_SELECTION
,您可以只选择一行。使用
ListSelectionModel.SINGLE_INTERVAL_SELECTION
,您可以选择位于一个块中的多行。 (例如,您可以选择第 1 - 5 行,但不能选择第 1-3 行和第 4-6 行,因此您需要ListSelectionModel.MULTIPLE_INTERVAL_SELECTION
)With
ListSelectionModel.SINGLE_SELECTION
you can just select one row.With
ListSelectionModel.SINGLE_INTERVAL_SELECTION
you can select more than one row, which are in one block. (e.g. you can select row 1 - 5, but not row 1-3 and row 4-6, therefor you needListSelectionModel.MULTIPLE_INTERVAL_SELECTION
)