Creating an object for the sole purpose of calling getClass
on it is a waste of memory and cycles. Instead, simply use the class’s
.class
property.
MyObject myOb = new MyObject(); // Noncompliant Class c = myOb.getClass();
Class c = MyObject.class;