[Cxtable-devel] Borne....
Status: Alpha
Brought to you by:
xiarcel
From: Williams, D. <DAV...@ca...> - 2001-12-04 21:10:42
|
Is there a reason why only 3 Adds appear on the Project page under the CVS heading in Summary? Shouldn't it be like 12x? Also....just a warning....in the early days...I had code like this... class B extends Thread{ private A a; public B(A an) { a=an; } public void run() { .... .... a.someCrazyThang(); } } class A extends Thread{ public A() {} public void run() { B b = new B(this); new Thread(b).start(); } public void someCrazyThang() { ... } } At some point, someone convinced me that such a thing was a bad idea...and that A should implement an interface instead, so that if something broke in A, it wouldn't trigger compile errors in B....etc.... or recursive errors between the two... But there may still be code similar to that. ~Dave David Scott Williams Computer Associates Marketing Representative-Sales Call Center One Computer Associates Plaza Islandia, New York 11749 tel: +1 800-243-9462 ext. 73431 tel: +1 631-342-3431 (Direct) fax: +1 631-342-5734 wi...@ca... |