How to get C++ class name of object?

Chiming in on this even further in the future. This answer is only sort of correct. StaticClass is not a virtual function and so will give you the class of the pointer type you are using. Using the example above (ignore the fact that these would be null/uninitialized):

URollLocalizationBank* Bank;
Bank->StaticClass();

In that case, it would return the class for URollLocalizationBank.

URollLocalizationBank* Bank;
UObject* BankObj = Bank;
BankObj ->StaticClass();

In this case, it would return UObject since that’s the type of the pointer being accessed.