類的實現過程

定義 :   類名 對象名 = new 類名()01 // 下面這個範例說明了使用Person類的對象調用類中的屬性與方法的過程02 class TestPersonDemo03 {04 public static void main(String[] args)  //定義主函數05 {06 Person p = new Person() ;  //實例化Person類的對象p  07 p.na
相關文章
相關標籤/搜索