개발자에게 배우는 개발자교육! 구로 오라클자바교육학원 www.oraclejava.co.kr

 

 

 

 

 

 

 

 

개발자에게 배우는 개발자교육! 구로 오라클자바교육학원 www.oraclejava.co.kr

 

 

 

 

 

 

접근제어

 

 

 

 
 

 

 


 

 

 

 



class Father {
   public int age;
   public long height;
   private float weight;
}

 

class Son extends Father {
   float getWeight() {
      return weight;
   }
}

 

public class AccessControlMain {
   public static void main(String[] args) {
      Son son = new Son();
      //Upcasting
      Father son1 = son;
      son1.age = 100;
      son1.height = 170L;
      son1.weight = 67.0F;
      System.out.println("age:" + son1.age);
      System.out.println("height:" + son1.height);
      System.out.println("weight:" + son1.weight);
      System.out.println("weight:" + son.getWeight());
      }
}

 

 

 


 

 


  

 

개발자에게 배우는 개발자교육! 구로 오라클자바교육학원 www.oraclejava.co.kr

 


개발자에게 배우는 개발자교육! 구로 오라클자바교육학원 www.oraclejava.co

 

 

+ Recent posts