Method lengthMethod = null;
String aa = "hello!!";
lengthMethod = String.class.getMethod("length");
System.out.println((lengthMethod.invoke(aa)));
Method lengthMethod = null;
String aa = "hello!!";
lengthMethod = String.class.getMethod("length");
System.out.println((lengthMethod.invoke(aa)));