- 99 名前:デフォルトの名無しさん mailto:sage [2008/02/22(金) 02:22:19 ]
- こんなの作ってみた。
自分のプログラムでは活用できてるからいいんだけど、意外と汎用性ないな…… struct UniqueNumber { template<class type_t> static unsigned int number() { static unsigned int n(count()); return n; }; private: static unsigned int count() { static unsigned int c(0); return c++; }; }
|

|