s******f 发帖数: 3984 | 1 1. How to randomly choose 1M numbers from 0 - 100M?
2. What is the best way to implement Singleton?
Any good ideas? |
H*M 发帖数: 1268 | 2 google implementation of singleton
d better be thread safe and exception safe..
【在 s******f 的大作中提到】 : 1. How to randomly choose 1M numbers from 0 - 100M? : 2. What is the best way to implement Singleton? : Any good ideas?
|
f******g 发帖数: 13917 | 3 wikipedia singleton, a couple of examples
【在 s******f 的大作中提到】 : 1. How to randomly choose 1M numbers from 0 - 100M? : 2. What is the best way to implement Singleton? : Any good ideas?
|
k***g 发帖数: 75 | 4 第一个就用随机交换吧,第一个数和所有的数的任意一个交换位置,第二个数和从第二
个数开始的所有数中的任意一个交换位置,依次做1M次,前1M个数就是了
【在 s******f 的大作中提到】 : 1. How to randomly choose 1M numbers from 0 - 100M? : 2. What is the best way to implement Singleton? : Any good ideas?
|
s*****i 发帖数: 355 | 5 private class instance holder最好
【在 f******g 的大作中提到】 : wikipedia singleton, a couple of examples
|
s******f 发帖数: 3984 | 6 我就照wiki上说的,人家说不好
然后人家说要加synchronized
:(
【在 f******g 的大作中提到】 : wikipedia singleton, a couple of examples
|