I am working on an exercise that asks me to create a class "Customer" then "declare a class variable named customer of type customer with an initial value of null." Now I was thinking this means instantiate an object of the class Customer, meaning the correct code would be Customer customer = new Customer();
However, I did not know how to set it equal to null so I looked up the solution and it said to write it like this private Customer customer = null;
To me it seems that this is bypassing calling the constructor and I am having trouble understanding exactly what is happening when I write it the way it says to in the solution.