Are these exactly same:
ClassLoader.getSystemClassLoader() // 1
vs:
obj.getClass().getClassLoader().getSystemClassLoader() // 2
Person.class.getClassLoader().getSystemClassLoader()
Is there a situation possible where they could yield different results?