07-06-2020 10:17 PM
07-07-2020 01:50 AM
HI,
ObjectAttributes - are unique for each object.
ClassAttributes - are shared by all objects in the class, actually you don't need any objects at all to use class attributes. Compared to C#, class attributes are the same as "static".
As you might notice, the util method GetClassAttributes.vi doesn't even have any reference in and reference out in the connector pane. You can also create a class that only contains class attributes, which is the "Static template" when creating a new class.
The reason they are called ClassAttributes and not StaticAttributes are due to backward compability to old GOOP.
Mattias
07-10-2020 12:44 AM
Thanks for your explanation。