1 2 3 4 5
class CastStringToObject { public static void main(String[] args) { Object o = (Object)"hello"; } }