Object-oriented programming: Difference between revisions
m Add link to LVClass |
m Add link to Template pattern |
||
(11 intermediate revisions by 2 users not shown) | |||
Line 1: | Line 1: | ||
Object | '''Object-Oriented Programming''' (OOP) is a [[Wikipedia:programming paradigm|programming paradigm]] that enforces [[Wikipedia:object-oriented design|object-oriented design]] principles to solve software problems. In object-oriented programming, a [[class (object-oriented programming)|class]] defines data and [[method (object-oriented programming)|method]]s to work with that data. A client then creates an [[object (object-oriented programming)|object]] - a specific instance of a class - to perform actions using methods that are exposed by the class. Implementation details are hidden from the client. | ||
Because implementation details are hidden from the client, methods and data of a class can change without affecting any of the client's code. This can even happen at runtime by replacing one class with another of the same kind. Classes can [[inheritance|inherit]] methods and data from a parent class to [[overriding|override]] methods of the parent class. The client can then use the child class as if it was the parent class, without changing any of the existing code. Methods called by the client will seamlessly execute the methods defined by the child class. If the child class doesn't override a method, the parent's method is called. This behavior is called [[dynamic dispatching]] in LabVIEW. | |||
[[File:OOP Example.png]] | |||
== | ==Object-Oriented Programming in LabVIEW== | ||
As of [[LabVIEW 8.20]], [[G]] is an object-oriented programming language that enforces object-oriented design principles. | |||
A class is defined by a [[class library]] that serves as a user-defined data type. Each class consists of a private data control and methods (member VIs) to access that data. A class can change the [[access scope]] of its methods to public (anyone), protected (this class and its descendants), community (this class and its friends) or private (this class). | |||
An object is a specific instance of a class. It is represented by data on a wire and behaves like a [[cluster]]. Objects in G are by-value. When a wire forks, the object may be duplicated, as decided by the [[LabVIEW compiler]]. A wire of a specific class can carry an object of that class or any of its descendants without loss of data. | |||
G supports single inheritance in which a class can have only one parent. Children inherit public and protected methods from their parent and can override inherited dynamic dispatch methods. A parent class can require a descendant to override specific dynamic dispatch methods and to call the parent method from inside the override. | |||
Many common object-oriented design patterns have been adapted into the by-value dataflow in G. | |||
* [[Aggregation pattern]] | |||
* [[Command pattern]] | |||
* [[Decorator pattern]] (aka. Wrapper pattern) | |||
* [[Delegation (object-oriented programming)|Delegation]] (aka. Delegation pattern) | |||
* [[Factory pattern]] | |||
* Hierarchy composition pattern | |||
* Singleton pattern | |||
* Specification pattern | |||
* Strategy pattern (aka. Policy pattern) | |||
* [[Template pattern]] (aka. Channeling pattern) | |||
* Visitor pattern | |||
See also: [[:Category:Object-Oriented Design Pattern]]s | |||
==Benefits of OOP== | |||
===Reusability=== | |||
===Scalability=== | |||
== External | ==See also== | ||
*[ | * [[LabVIEW Class]] | ||
* [[LabVIEW Object]] | |||
* [[LabVIEW object-oriented programming FAQ]] | |||
* [[Americas CLA Summit 2019#StephenGInterfaces|Americas CLA Summit 2019: G Interfaces]] by Stephen Loftus-Mercer | |||
* [[Graphical Object-Oriented Programming]] (GOOP) | |||
* [[G-sharp Framework|G# Framework]] | |||
==External links== | |||
*[https://www.ni.com/en-us/support/documentation/supplemental/06/labview-object-oriented-programming-faq.html LabVIEW Object-Oriented Programming FAQ] by National Instruments | |||
*[https://www.ni.com/en-us/support/documentation/supplemental/06/labview-object-oriented-programming--the-decisions-behind-the-de.html LabVIEW Object-Oriented Programming: The Decisions Behind the Design] by National Instruments | |||
*[http://www.eyesonvis.com/blog/2006/08/code-reuse-through-classes.html Code Reuse through Classes] by Christina Rogers | |||
*[https://forums.ni.com/t5/LabVIEW-Development-Best/Introduction-to-Object-Oriented-Programming-and-Hardware/ta-p/3519580 Introduction to Object Oriented Programming] by Elijah Kerry | *[https://forums.ni.com/t5/LabVIEW-Development-Best/Introduction-to-Object-Oriented-Programming-and-Hardware/ta-p/3519580 Introduction to Object Oriented Programming] by Elijah Kerry | ||
*[https://forums.ni.com/t5/LabVIEW-Development-Best/When-Should-You-Use-LabVIEW-Classes/ba-p/3478257 When should you use classes] by Elijah Kerry | |||
*[https://forums.ni.com/t5/LabVIEW-Development-Best/When-Should-You-Use-LabVIEW-Classes/ba-p/3478257 When should you use classes] | |||
{{stub}} | |||
[[Category:Object-Oriented Programming]] | |||
[[Category:Programming Paradigm]] |
Latest revision as of 14:14, 8 August 2024
Object-Oriented Programming (OOP) is a programming paradigm that enforces object-oriented design principles to solve software problems. In object-oriented programming, a class defines data and methods to work with that data. A client then creates an object - a specific instance of a class - to perform actions using methods that are exposed by the class. Implementation details are hidden from the client.
Because implementation details are hidden from the client, methods and data of a class can change without affecting any of the client's code. This can even happen at runtime by replacing one class with another of the same kind. Classes can inherit methods and data from a parent class to override methods of the parent class. The client can then use the child class as if it was the parent class, without changing any of the existing code. Methods called by the client will seamlessly execute the methods defined by the child class. If the child class doesn't override a method, the parent's method is called. This behavior is called dynamic dispatching in LabVIEW.
Object-Oriented Programming in LabVIEW
As of LabVIEW 8.20, G is an object-oriented programming language that enforces object-oriented design principles.
A class is defined by a class library that serves as a user-defined data type. Each class consists of a private data control and methods (member VIs) to access that data. A class can change the access scope of its methods to public (anyone), protected (this class and its descendants), community (this class and its friends) or private (this class).
An object is a specific instance of a class. It is represented by data on a wire and behaves like a cluster. Objects in G are by-value. When a wire forks, the object may be duplicated, as decided by the LabVIEW compiler. A wire of a specific class can carry an object of that class or any of its descendants without loss of data.
G supports single inheritance in which a class can have only one parent. Children inherit public and protected methods from their parent and can override inherited dynamic dispatch methods. A parent class can require a descendant to override specific dynamic dispatch methods and to call the parent method from inside the override.
Many common object-oriented design patterns have been adapted into the by-value dataflow in G.
- Aggregation pattern
- Command pattern
- Decorator pattern (aka. Wrapper pattern)
- Delegation (aka. Delegation pattern)
- Factory pattern
- Hierarchy composition pattern
- Singleton pattern
- Specification pattern
- Strategy pattern (aka. Policy pattern)
- Template pattern (aka. Channeling pattern)
- Visitor pattern
See also: Category:Object-Oriented Design Patterns
Benefits of OOP
Reusability
Scalability
See also
- LabVIEW Class
- LabVIEW Object
- LabVIEW object-oriented programming FAQ
- Americas CLA Summit 2019: G Interfaces by Stephen Loftus-Mercer
- Graphical Object-Oriented Programming (GOOP)
- G# Framework
External links
- LabVIEW Object-Oriented Programming FAQ by National Instruments
- LabVIEW Object-Oriented Programming: The Decisions Behind the Design by National Instruments
- Code Reuse through Classes by Christina Rogers
- Introduction to Object Oriented Programming by Elijah Kerry
- When should you use classes by Elijah Kerry
This article is a stub. You can help LabVIEW Wiki by expanding it. Please improve this article if you can. |