Preserve Run-Time Class function: Difference between revisions
mNo edit summary |
mNo edit summary |
||
Line 1: | Line 1: | ||
{{stub}} | {{stub}} | ||
{{TOCright}} | {{TOCright}} | ||
{{LabVIEW Palette Object Information|palette=Functions Palette/Programming/Cluster, Class, and Variant{{!}}Cluster, Class, and Variant palette|type=function}} | {{LabVIEW Palette Object Information|palette=Functions Palette/Programming/Cluster, Class, and Variant{{!}}Cluster, Class, and Variant palette|type=function|icon=Cluster, Class, & Variant Palette - Preserve Run-Time Class.png}} | ||
The '''Preserve Run-Time Class''' function checks at run time whether object in is of the same class as, or is a child class of, target object. | The '''Preserve Run-Time Class''' function checks at run time whether object in is of the same class as, or is a child class of, target object. |
Latest revision as of 20:14, 29 June 2020
![]() |
This article is a stub. You can help LabVIEW Wiki by expanding it. Please improve this article if you can. |
Object information | |
---|---|
Owning palette(s) | Cluster, Class, and Variant palette |
Type | Function |
Requires | Basic Development Environment |
Icon | ![]() |
The Preserve Run-Time Class function checks at run time whether object in is of the same class as, or is a child class of, target object.
Use this function on the block diagram of a SubVI when you want to guarantee that LabVIEW downcasts a LabVIEW class output of the subVI node to the same class type as a LabVIEW class input when the subVI receives a child class of the expected input type.
Usage
Use this function in VIs that meet the following criteria:
- The VI accepts a LabVIEW class as an input and returns the same LabVIEW class as an output.
- You want to call the VI as a subVI.
- You want to guarantee that the output class type of the resulting subVI node always changes to match the input class type when a child class is wired as an input.
For many subVI nodes that accept and return the same LabVIEW class, LabVIEW automatically downcasts the output class when you wire a child class to the class input. Those subVIs do not require you to use this function on their block diagram.
However, if it is impossible for LabVIEW to verify that the class type does not change across the block diagram of the subVI, LabVIEW does not automatically downcast the output class of the subVI node. In these cases, if you have additional knowledge that guarantees that the class type does not change across the block diagram of the subVI, you can use this function to downcast the class immediately before returning it from the subVI. Because this function always returns an object of the same type as target object, LabVIEW recognizes that it can downcast the returned class to that type. Therefore, this function notifies LabVIEW that it is safe to downcast the class output of the subVI node to match the input class type.
Best practice
![]() |
Add other best practices for this function. |
History
![]() |
History information is needed. What changes have occurred over previous versions? |
Version | Change(s) |
---|---|
![]() |
More info to come. |
See Also
![]() |
Add links to internal wiki pages that would also help. |
External Links
![]() |
Add links to external resources that would also help. |