What is inheritance in term of oop (flash actionscript)? : adobe flex action script
Answer Posted / Nisha Rani
Inheritance is a key concept in Object-Oriented Programming (OOP) where a new class is based on an existing one, inheriting its characteristics and properties. In Flash ActionScript, you can create a new class that inherits from an existing one using the extends keyword. For example:nnpublic class ChildClass extends ParentClass {n}
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers