英文:
How to store user data and when the data is repeated it should show error
问题
例如,
如果有4个名为A1、B1、C1、D1的插槽。如果第一个用户输入A1,当第二个用户输入相同的插槽时,应该报错,因为该插槽已经被选择。
英文:
Example
if there are 4 slots named A1,B1,C1,D1. If first user enters A1 and when the second user enter the same slot it should error it has already been chosen.
答案1
得分: 1
内置类java.util.HashMap
可以做到这一点。阅读文档,也许搜索一些用法示例
英文:
The built-in class java.util.HashMap
can do that. Read the docs, perhaps search for some usage examples
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论