public void run() {
try {
for (int i = 0; true; i++) {
// û�д���ֵ�ĺ���
Result result = activeObject.makeString(i, fillchar);
Thread.sleep(10);
String value = (String) result.getResultValue();
System.out.println(Thread.currentThread().getName()
+ ": value = " + value);
}
} catch (InterruptedException e) {
}