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 应用程序中的数据库中填充大约 10000 行。我可以选择随机的名字、姓氏等。我设置了 60 个 {Departmentid, Managerid} 组合。我必须将这组随机分配给那 10,000 名员工。每个员工都应该有一个合法的 Departmentid 和 Managerid 组合。
我应该如何处理这个?任何帮助表示赞赏。
如果您的 departmentId 或 managerids 存储在数组中,您可以使用 java.util.Random departmentid[new Random().nextInt(60)]其中 nextInt(int upperbound) 将帮助随机化条目。
departmentid[new Random().nextInt(60)]
散列是最简单的方法。创建名字和姓氏组合的哈希。现在取一个随机散列并找到该散列的员工并分配你想要的任何东西