C++ versus LabView object oriented programming

Asked By 20 points N/A Posted on -
qa-featured

What are the difference between C ++ and LabViews object-oriented programming(OOP). Which program has better flexibility and maintainability in programming?

SHARE
Answered By 5 points N/A #114858

C++ versus LabView object oriented programming

qa-featured

Hy,

 There are a number of difference exist between these two languages. First  of all Labview has a basic root class for each object and C++ does not have a root class.

There are constructors in C++ while in Labview no constructors are there, similar is the case with destructors which are used in C++ while Labview does not them. C++ is a functional language based on text while Labview is a dataflow language based on graphics. There are templates in C++ but they do not exist in Labview. In C++ a value can be passed either by value or by reference but in case of Labview value is only passed by reference through some special features present in the Labview.

 

 

 

Related Questions