서브클래스 제거

1 개요[ | ]

Remove Subclass
서브클래스 제거
class Person {
  function getGenderCode(): String {return "X";}
}
class Male extends Person {
  function  getGenderCode(): String {return "M";}
}
class Female extends Person {
  function getGenderCode(): : String {return "F";}
}
class Person {
  function getGenderCode() {return $_genderCode;}
}

2 같이 보기[ | ]

3 참고[ | ]

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}