E D R , A S I H C RSS

Full text search for "Inheritance"

Inheritance


Search BackLinks only
Display context of search results
Case-sensitive searching
  • Refactoring/BadSmellsInCode . . . . 4 matches
         == Parallel Inheritance Hierarchies ==
         RemoveMiddleMan, InlineMethod, ReplaceDelegationWithInheritance
         MoveMethod, MoveField, ChangeBidirectionalAssociationsToUnidirectional, ReplaceInheritanceWithDelegation, HideDelegation
         ReplaceInheritanceWithDelegation
  • Refactoring/DealingWithGeneralization . . . . 4 matches
         == Replace Inheritance with Delegation ==
         http://zeropage.org/~reset/zb/data/ReplaceInheritanceWithDelegation.gif
         == Replace Delegation with Inheritance ==
         http://zeropage.org/~reset/zb/data/ReplaceDelegationWithInheritance.gif
  • JavaScript/2011년스터디/김수경 . . . . 2 matches
          * [http://ejohn.org/blog/simple-javascript-inheritance/ Simple JavaScript Inheritance]
          * Simple Class Creation and Inheritance
  • Refactoring/BigRefactorings . . . . 2 matches
         == Tease Apart Inheritance ==
          * You have an inheritance hierarchy that is doing two jobs at once.[[BR]]''Create two hierarchies and use delegation to invoke one from the other.''
         http://zeropage.org/~reset/zb/data/TeaseApartInheritance.gif
  • UML . . . . 2 matches
         This diagram describes the structure of a simple Restaurant System. UML shows [[Inheritance_(computer_science)|Inheritance]] relationships with a [[triangle]]; and containers with [[rhombus|diamond shape]]. Additionally, the role of the relationship may be specified as well as the cardinality. The Restaurant System has any number of Food dishes(*), with one Kitchen(1), a Dining Area(contains), and any number of staff(*). All of these objects are associated to one Restaurant.
  • 타도코코아CppStudy/0724/선희발표_객체지향 . . . . 2 matches
          * Inheritance(상속) - 계층(hierarchy)관계에 놓여 있는 클래스들 간에 속성이나 연산 기능들을 공유한다.
          * sharing : 자료 구조및 행위의 공유화(sharing)는 계층 관계에 놓여 있는 클래스들 간의 상속성(inheritance)으로 가능하다.
          * 상속성(Inheritance) : 객체를 이루는 클래스를 만들때 이전의 정의했던 클래스와 비슷하나 다른 특이한 특성을 지니는 클래스를 만드는것이다.
  • 타도코코아CppStudy/객체지향발표 . . . . 2 matches
          * Inheritance(상속) - 계층(hierarchy)관계에 놓여 있는 클래스들 간에 속성이나 연산 기능들을 공유한다.
          * sharing : 자료 구조및 행위의 공유화(sharing)는 계층 관계에 놓여 있는 클래스들 간의 상속성(inheritance)으로 가능하다.
          * 상속성(Inheritance) : 객체를 이루는 클래스를 만들때 이전의 정의했던 클래스와 비슷하나 다른 특이한 특성을 지니는 클래스를 만드는것이다.
  • 1002/Journal . . . . 1 match
         그림을 보고 나니, Inheritance 나 Delegation 이 필요없이 이루어진 부분이 있다는 점 (KeywordGenerator 클래스나 BookSearcher, HttpSpider 등) Information Hiding 이 제대로 지켜지지 않은것 같다는 점, (Book 과 관련된 데이터를 얻고, 검색하여 리스트를 만들어내는 것은 BookMapper 에서 통일되게 이루어져야 한다.) 레이어를 침범한것 (각각의 Service 클래스들이 해당 로직객체를 직접 이용하는것은 그리 보기 좋은 모양새가 아닌듯 하다. 클래스 관계가 복잡해지니까. 그리고 지금 Service 가 서블릿에 비종속적인 Command Pattern 은 아니다. 그리고 AdvancedSearchService 와 SimpleSearchService 가 BookMapper 에 촛점을 맞추지 않고 Searcher 클래스들을 이용한 것은 현명한 선택이 아니다.)
  • AcceleratedC++/Chapter13 . . . . 1 match
         = Chapter 13 Using inheritance and dynamic binding =
         == 13.1 Inheritance ==
         '''상속(inheritance)'''
          // as defined in 13.1.2/230; Note: `grade' and `read' are `virtual' by inheritance
         == 13.3 Using inheritance to solve our problem ==
  • HardcoreCppStudy/두번째숙제/CharacteristicOfOOP/김아영 . . . . 1 match
         '''* 상속성(Inheritance) '''
  • Java Study2003/첫번째과제/곽세환 . . . . 1 match
         자바는 C++와는 달리 처음부터 객체지향 개념을 기반으로 하여 설계되었고, 객체지향 언어가 제공해 주어야 하는 추상화(Abstraction), 상속(Inheritance), 그리고 다형성(Polymorphism) 등과 같은 특성들을 모두 완벽하게 제공해 주고 있습니다. 또한, 자바의 이러한 객체지향적 특성은 분산 환경, 클라이언트/서버 기반 시스템이 갖는 요구사항도 만족시켜 줄 수 있습니다.
  • Java Study2003/첫번째과제/노수민 . . . . 1 match
         자바는 C++와는 달리 처음부터 객체지향 개념을 기반으로 하여 설계되었고, 객체지향 언어가 제공해 주어야 하는 추상화(Abstraction), 상속(Inheritance), 그리고 다형성(Polymorphism) 등과 같은 특성들을 모두 완벽하게 제공해 주고 있습니다. 또한, 자바의 이러한 객체지향적 특성은 분산 환경, 클라이언트/서버 기반 시스템이 갖는 요구사항도 만족시켜 줄 수 있습니다.
  • Java Study2003/첫번째과제/장창재 . . . . 1 match
         자바는 C++와는 달리 처음부터 객체지향 개념을 기반으로 하여 설계되었고, 객체지향 언어가 제공해 주어야 하는 추상화(Abstraction), 상속(Inheritance), 그리고 다형성(Polymorphism) 등과 같은 특성들을 모두 완벽하게 제공해 주고 있습니다. 또한, 자바의 이러한 객체지향적 특성은 분산 환경, 클라이언트/서버 기반 시스템이 갖는 요구사항도 만족시켜 줄 수 있습니다.
         이러한 문제는 자바가 스레드 스케줄링 정책 구현에 의존하고, synchronized 명령어가 모니터 기반의 동기화 기법만 제공하고 큐 대기 시간을 예측할 수 없으며, notify() 메소드가 스레드를 깨우는 순서가 불명확하고, 우선순위 역전(priority inversion_의 가능성이 있습니다. 이러한 문제는 API 수준에서 해결되어야 하고, 실시간 타스크 처리를 위한 우선순위 레벨을 확장하고, 우선순위 상속(priority inheritance) 또는 우선순위 최고 한도 제한(priority ceiling) 등과 같은 우선순위 역전 방지 (priority inversion avoidance) 프로토콜을 사용하고, MuteX, 이진 세마포어(Binary Semaphore), 계수 세마포어(Counting Semaphore) 등을 사용할 수 있습니다.
  • JavaStudy2003/두번째과제/곽세환 . . . . 1 match
          상속(Inheritance)
  • JavaStudy2004/자바따라잡기 . . . . 1 match
          * No More Multiple Inheritance
  • MoreEffectiveC++/C++이 어렵다? . . . . 1 match
          === Inheritance - Overriding - virtual ===
          * Multiinheritance 에서 제기되는 문제
  • OOP . . . . 1 match
         6. Classes are organized into singly-rooted tree structure, called an inheritance hirearchy.
          * [Inheritance](상속)
  • PatternOrientedSoftwareArchitecture . . . . 1 match
          * Layering Through Inheritance : 상속 관계로 레이어 패턴을 구현. 현재 뜨는 OOP로 할 수 있다.
  • 삼총사CppStudy . . . . 1 match
          * [삼총사CppStudy/Inheritance]
  • 삼총사CppStudy/Inheritance . . . . 1 match
          아.. 이 문제를 어떻게 하면 좋을까~? 이럴때 사용할 수 있는 스킬이 바로 '''상속(Inheritance)'''이다.
Found 20 matching pages out of 7540 total pages (5000 pages are searched)

You can also click here to search title.

Valid XHTML 1.0! Valid CSS! powered by MoniWiki
Processing time 0.3064 sec