class Test { void method(Object x) { String s = null; s = (String) x; System.out.println(s.length()); } }