자바 에서 클래스 의 실례 화 방법

자바 에서 클래스 의 실례 화 방법 은 네 가지 경로 가 있다.
1) new 연산 자 사용
2) Class 대상 을 호출 하 는 new Instance () 방법
3) 클론 () 방법 을 호출 하여 기 존 인 스 턴 스 를 복사 합 니 다.
4) Object InputStream 의 readObject () 방법 을 통 해 역 직렬 화 클래스
1.ClassInstance.java

  
  
  
  
  1. 1 import java.io.*; 
  2.  2  
  3.  3 class ClassInstance implements Cloneable, Serializable { 
  4.  4     private String str = " ..."
  5.  5     public void fun(){ 
  6.  6         System.out.println(str); 
  7.  7     } 
  8.  8     public ClassInstance(String str){ 
  9.  9         System.out.println(" "); 
  10. 10         this.str += str;  
  11. 11     } 
  12. 12     public ClassInstance(){ 
  13. 13         System.out.println(" "); 
  14. 14     } 
  15. 15     public Object clone(){ 
  16. 16         return this
  17. 17     } 
  18. 18 } 

2.ClassInstanceTest.java
 

  
  
  
  
  1.  1 import java.io.*; 
  2.  2 import java.lang.reflect.*; 
  3.  3  
  4.  4 public class ClassInstanceTest{ 
  5.  5     public static void main(String[] args) throws ClassNotFoundException, InstantiationException, 
  6.  6            IllegalAccessException, IOException,InvocationTargetException, NoSuchMethodException{ 
  7.  7         //  
  8.  8         ClassInstance ci01 = new ClassInstance("01"); 
  9.  9         ci01.fun(); 
  10. 10  
  11. 11         //  
  12. 12         ClassInstance ci02 = (ClassInstance) Class.forName("ClassInstance").newInstance(); 
  13. 13         ci02.fun(); 
  14. 14  
  15. 15         //  
  16. 16         ClassInstance ci03 = (ClassInstance) ci01.clone(); 
  17. 17         ci03.fun(); 
  18. 18  
  19. 19         //  
  20. 20         FileOutputStream fos = new FileOutputStream("ci.tmp"); 
  21. 21         ObjectOutputStream oos = new ObjectOutputStream(fos); 
  22. 22         oos.writeObject(ci01); 
  23. 23         oos.close(); 
  24. 24         fos.close(); 
  25. 25          
  26. 26         FileInputStream fis = new FileInputStream("ci.tmp"); 
  27. 27         ObjectInputStream ois = new ObjectInputStream(fis); 
  28. 28          
  29. 29         ClassInstance ci04  = (ClassInstance) ois.readObject(); 
  30. 30         ois.close(); 
  31. 31         fis.close(); 
  32. 32          
  33. 33         ci04.fun(); 
  34. 34         System.out.println("-------------------- --------------------"); 
  35. 35         ClassInstance ci05 = null
  36. 36         //    
  37. 37         //  
  38. 38         Constructor[] ctor = Class.forName("ClassInstance").getDeclaredConstructors(); 
  39. 39         //  
  40. 40         for(int i=0;i<ctor.length;i++ ){ 
  41. 41             Class[] cl = ctor[i].getParameterTypes(); 
  42. 42             if(cl.length == 1){ 
  43. 43                 //  
  44. 44                 ci05 = (ClassInstance) Class.forName("ClassInstance").getConstructor(cl).newInstance(new Object[]{"05"}); 
  45. 45             } 
  46. 46         } 
  47. 47         ci05.fun(); 
  48. 48     } 
  49. 49 } 

 3. 출력 결과
1         2   ...01
3         4   ... 5   ...01
6   ...01
7 -------------------    --------------------
8         9   ...05
 이 몇 가지 상황 을 제외 하고 자바 류 대상 을 예화 할 수 있 는 것 을 제외 하고 암시 적 호출 예화 도 이미 집중 되 어 있 는 상황 을 이용 했다.예 를 들 어 흔히 볼 수 있 는 방법:
 

  
  
  
  
  1. 1 public class ClassInstance{ 
  2. 2   public ClassInstance(){ 
  3. 3   } 
  4. 4     public ClassInstance getInstance(){ 
  5. 5     return new ClassInstance(); 
  6. 6   } 
  7. 7 } 

관찰 결 과 를 통 해 우 리 는 어떤 방식 이 든 반드시 거 쳐 야 하 는 단계 인 구조 방법 을 발견 했다.아무리 구조 함수 가 초기 화 류 로 서 의 의 미 는 변 하지 않 는 다.

좋은 웹페이지 즐겨찾기