Muhammad Sufiyaninnosufiyan.hashnode.dev·Dec 9, 2024Understanding Overrides in Package ManagementWhat is an Override? An override in package management allows you to specify the version of a dependency or sub-dependency (also called transitive or inter-dependencies) that your project should use, even if that version differs from the one specifie...SMIT - Batch 10package manager
Francesco Tusathinkobjectoriented.hashnode.dev·Nov 25, 2024Understanding Polymorphism and Abstract Classes: Code Reuse and Design ContractsA previous post discussed the Object-Oriented Programming (OOP) concept of generalisation (or "is-a-kind-of")—a relationship between a general category (superclass or parent) and a more specific type (subclass or child). That article focussed on the ...43 readsThe World of Classes and Objectspolymorphism
Tobytoby.hashnode.dev·May 10, 2024접근제어자, 상속 그리고 overrideclass Parent { open var op = 1 public var pu = 2 internal var int = 3 fileprivate var fp = 4 private var pr = 5 } class Child: Parent {} 같은 파일 내 open ~ fileprivate 까지 접근 사용 가능 다른 파일 내 open ~ internal 까지 사용가능 fileprivate는 사용 불가능 ...Swift상속
Byung Joo Jeongjoo.hashnode.dev·May 6, 2024@Override In Inheritance With the Characteristic of Polymolphism : Annotation is just annotation? or Does it have a role?#Foreword Before i begin, I want to clarify that I am not a seasoned programmer; rather I am here to learn. If somebody encounters this document, consider is as someone's personal log. I've often heard about Override and Overload. These are concept...Override in inheritance