in reply to Being helpful to a fault?
I have to agree with you. A bad idea is still a bad idea even if you carry it out smartly.
I tell you what I do:
In Java, regardless whether I need all of the classes in a particular package, I can easily import all of them by doing something like:
import java.util.*;
But I never did that, instead I always specify each class I need:
import java.util.Vector; import java.util.Hashtable;
Why? Because I know what I am doing, and want to hold it tightly.
|
---|
Replies are listed 'Best First'. | |
---|---|
Re: Re: Being helpful to a fault?
by halley (Prior) on Dec 11, 2003 at 21:49 UTC |