클래스와 대상의 개념(프로그램 소감)

1556 단어
패키지 문장 연습;
//TODO Auto-generated method stub
/*
  • 류는 하나의 개념으로 추상적이다. 예를 들어 인류
  • 대상은 존재하는 실체이다. 예를 들어 한 사람
  • 대상은 클래스의 실례


  • */

  • //--------------정의 클래스--------------------
    //인용 유형은 클래스를 가리키며 사용자가 정의한 유형입니다//class=유형 Person은 클래스 이름으로 사용자 정의할 수 있습니다
    class Person {//구성원 변수 int age; String name;//구성원 메서드
    // 1       2      3      4    (      )
    void Introduce()//     
    {
    	System.out.printf("my name is %s, I am %d. 
    ", name, age); } // ^ : , // Person(String name, int age) { //this this.name = name; this.age = age; totals++; } static // static , int totals = 0; static // void Count() { System.out.printf("created %d figure.", totals); }

    }
    public class 클래스 및 객체
    	//  Person         
    	// =   new   (      )         ,           
    	// =           
    	//             
    	//              ,           
    	Person mike = new Person("mike", 20);
    
    	//     ,    
    	mike.Introduce();
    	//     ,    
    	mike.age = 30;
    
    	mike.Introduce();
    	//  .    
    	Person.Count();
    	
    	//Person.Introduce ( ) ;
    	
    	//---------------------  、  、  、this   -----------------
    	
    	//----------------------    -----------------------
    	//                
    	//         ,          
    	
    	//                
    	//         ,          
    	//                 
    
    }
    

    }
    클래스와 대상은 자바의 중요한 일환에 속하기 때문에 여기까지 배우기가 좀 어려워졌기 때문에 이 부분은 학습을 가중시켜야 한다. 이런 것들을 이해해야만 계속 배울 수 있다.

    좋은 웹페이지 즐겨찾기