您好,登錄后才能下訂單哦!
這篇文章主要為大家展示了“classforname方法有幾種形式”,內容簡而易懂,條理清晰,希望能夠幫助大家解決疑惑,下面讓小編帶領大家一起研究并學習一下“classforname方法有幾種形式”這篇文章吧。
Class.forName:返回與給定的字符串名稱相關聯類或接口的Class對象。Class.forName是一個靜態方法,同樣可以用來加載類。
classforname的形式
該方法有兩種形式:Class.forName(Stringname,booleaninitialize,ClassLoaderloader)和Class.forName(StringclassName)。第一種形式的參數name表示的是類的全名;initialize表示是否初始化類;loader表示加載時使用的類加載器。第二種形式則相當于設置了參數initialize的值為true,loader的值為當前類的類加載器。
staticClass<?>
forName(StringclassName)
ReturnstheClassobjectassociatedwiththeclassorinterfacewiththegivenstringname.
staticClass<?>
forName(Stringname,booleaninitialize,ClassLoaderloader)
ReturnstheClassobjectassociatedwiththeclassorinterfacewiththegivenstringname,usingthegivenclassloader.
classforname的說明:
publicstaticClass<?>forName(StringclassName)
ReturnstheClassobjectassociatedwiththeclassorinterfacewiththegivenstringname.Invokingthismethodisequivalentto:
Class.forName(className,true,currentLoader)
wherecurrentLoaderdenotesthedefiningclassloaderofthecurrentclass.
Forexample,thefollowingcodefragmentreturnstheruntimeClassdescriptorfortheclassnamedjava.lang.
以上是“classforname方法有幾種形式”這篇文章的所有內容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內容對大家有所幫助,如果還想學習更多知識,歡迎關注億速云行業資訊頻道!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。