Jump to content

GOOP - Graphical Object Oriented Programming: Difference between revisions

From LabVIEW Wiki
m External Links: Add GOOP Course Material
 
Line 32: Line 32:
*[http://www.endevo.se/ Endevo] - the company that supports/develops the GOOP Toolkit
*[http://www.endevo.se/ Endevo] - the company that supports/develops the GOOP Toolkit
*GOOP/G++ - Robert Burke's Web Page
*GOOP/G++ - Robert Burke's Web Page
*[https://forums.ni.com/t5/GDS-Goop-Development-Suite/GOOP-Course-Material/m-p/4101113/highlight/true#M445 GOOP Course Material] - GOOP training material with Exercises and Solutions


[[Category:GOOP]]
[[Category:GOOP]]
[[Category:GOOP]]
[[Category:GOOP]]
[[Category:GOOP]]

Latest revision as of 10:46, 22 November 2020

GOOP - Graphical Object Oriented Programming

GOOP stands for Graphical Object Oriented Programming. It is a category of frameworks for non-native object-oriented programming in LabVIEW that support by reference objects with VI methods for operating on data. Some versions of GOOP support inheritance and dynamic dispatch. GOOP really hit mainstream with the release of the GOOP Toolkit from Endevo and National Instruments. OpenG even has its own version of GOOP, called OpenGOOP.

With LVOOP and queues, it is very easy to create basic GOOP functionality. Examples are included in the example folder installed with LabVIEW.

GOOP is great because it allows you to build components that encapsulate their data, functionality, and behavior. Why ecapsulate?...

Benefits of Encapsulation

  • Maintainable
  • Scalable
  • Useable (and therefore Reusable)
  • Testable
  • Enable Multiple Developer Collaboration

See Also

External Links