Loading a class is making the VM aware of the definition of the class. Construction is creating a instance of that class.
Foo foo1 = new Foo();
Foo foo2 = new Foo();
The class Foo has been loaded once. To instances of Foo have been constrcucted.