程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> JAVA編程 >> JAVA綜合教程 >> Java Class.cast方法,javaclass.cast方法

Java Class.cast方法,javaclass.cast方法

編輯:JAVA綜合教程

Java Class.cast方法,javaclass.cast方法


1、Java api

public T cast(Object obj);

Casts an object to the class or interface represented

解釋的比較籠統,意思就是將一個對象裝換為類或者接口。

2、代碼示例

/**
 * Created by shengke on 2016/10/22.
 */
class A {
    public static void show() {
        System.out.println("Class A show() function");
    }
}

class B extends A {
    public static void show() {
        System.out.println("Class B show() function");
    }
}

public class TestCast {

    public static void main(String[] args) {

        TestCast cls = new TestCast();
        Class c = cls.getClass();
        System.out.println(c);

        Object obj = new A();
        B b1 = new B();
        b1.show();

        // casts object
        A a = new A();
        a = A.class.cast(b1);

        System.out.println(obj.getClass());
        System.out.println(b1.getClass());
        System.out.println(a.getClass());
    }
}

執行結果

class com.scot.effective.genericity.TestCast
Class B show() function
class com.scot.effective.genericity.A
class com.scot.effective.genericity.B
class com.scot.effective.genericity.B  
核心為:a = A.class.cast(b1); 把a轉化為了B類型,此處容易產生把b1轉成A類型誤解。

3、源碼

    /**
     * Casts an object to the class or interface represented
     * by this {@code Class} object.
     *
     * @param obj the object to be cast
     * @return the object after casting, or null if obj is null
     *
     * @throws ClassCastException if the object is not
     * null and is not assignable to the type T.
     *
     * @since 1.5
     */
    public T cast(Object obj) {
        if (obj != null && !isInstance(obj))
            throw new ClassCastException(cannotCastMsg(obj));
        return (T) obj;
    }

4、總結

此方法只能轉換當前類型或其子類下的對象,只是簡單進行強轉。




  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved