A
ACompetitorsChallenge
I am working from preexisting code by a programmer who is not
available for clarification on a line of code ...
l1:import model.Manager;
l2
ublic class DataSourceConnectionObject {
l3: public static void main(String[] args) {
l4: try {
l5: Manager manager =null;
....
is all that line 5 is declaring is a new instance of "Manager" and
naming it "manager" and assigning the expression a "null" value
without the "new" clause used to issue it?
any help would be nice
thx
available for clarification on a line of code ...
l1:import model.Manager;
l2
l3: public static void main(String[] args) {
l4: try {
l5: Manager manager =null;
....
is all that line 5 is declaring is a new instance of "Manager" and
naming it "manager" and assigning the expression a "null" value
without the "new" clause used to issue it?
any help would be nice
thx