代码搜索:implementing
找到约 2,669 项符合「implementing」的源代码
代码结果 2,669
www.eeworm.com/read/357935/10198206
pdf implementing sobol's quasirandom sequence generator.pdf
www.eeworm.com/read/127767/14336013
txt e102. implementing a work queue.txt
The work queue is thread-safe so that multiple threads can simultaneously add and remove objects from it.
class WorkQueue {
LinkedList queue = new LinkedList();
public synchron
www.eeworm.com/read/127767/14336475
txt e046. implementing a serializable singleton.txt
By default, the deserialization process creates new instances of classes. This example demonstrates how to customize the deserialization process of a singleton to avoid creating new instances of the s
www.eeworm.com/read/127767/14336956
txt e002. implementing a bound property.txt
A bound property fires a PropertyChangeEvent whenever its value is changed. This example bean implements a single bound integer property called myProperty.
int myProperty;
public int getM
www.eeworm.com/read/127767/14337725
txt e003. implementing a constrained property.txt
A constrained property fires a PropertyChangeEvent whenever its value is about to be changed. Any listener can veto the event, thereby preventing the change. This example bean implements a single cons