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

 

 

 

 

 

 

 

 

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

 

 

 

 

 

 

접근제어

 

 

 

 
 

 

 


 

 

 

 


class Person {
  public int age;
  public long height;
  private float weight;
}
public class PersonAccessControlMain
{
  public static void main(String[] args) {
    Person brother = new Person();
    brother.age =100;
    brother.height = 170L;
    brother.weight = 67.0F;
    System.out.println("age:" + brother.age);
    System.out.println("height:" + brother.height);
    System.out.println("weight:" + brother.weight);
  }
}

 

 


  

 

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

 


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

 

 

+ Recent posts