class Test13
{
public static void main(String[] args)
{
method();
}
public static void method()
{
String str = "abcd";
sop(str.length());//str.length()返回类型是int类型,也就是说int类型的整数赋给了obj (object 对象是根,是任何对象的根,任何类都是Object的子类,所以这里用的是多态,父类 //引用指向子类对象)
//System.out.println(str.length());//当然可以这么做,但是,如果打印多条语句的话 会显得程序比较拖沓
}
public static void sop(Object obj)
{
System.out.println(obj);
}
}
|