자바 의 대상 배열

760 단어
자바 의 대상 배열
대상 배열 의 성명 []=new [ ] 또는 []={ } 인 스 턴 스 Perp pp[] = new Perp[3]; Perp pip[]={new Perp(12),new Perp(13)}; 는 익명 의 대상 배열 print(new Perp[]{new Perp(12),new Perp(14),new Perp(1345)}); 위의 코드 중 print 을 사용 하 는 것 이 정의 하 는 방법 으로 구체 적 으로 다음 과 같다.
public static void print(Perp pr[]){
        for(int i=0;i
Perp 는 정 의 된 유형 으로 구체 적 으로 다음 과 같다.
class Perp{
    public Perp(int age){
        this.setAge(age);
    }
    private int age;
    public void setAge(int age){
        this.age=age;
    }
    public int getAge(){
        return this.age;
    }
}

좋은 웹페이지 즐겨찾기