Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Static variable
Message
From
14/10/1999 21:21:34
 
General information
Forum:
Visual FoxPro
Category:
Coding, syntax & commands
Title:
Miscellaneous
Thread ID:
00276200
Message ID:
00276670
Views:
27
A property of a class is not shared by all the objects/instances of that class. It's true that all instances have that property, but the value of the property may be different for each instance.

A static property in a C++ class is a property that is available to all instances of the class AND it has the same value for all instances. Ie: If the property is modified in one instances, than its new value is available to all instances.

Vlad

>Yes, a property of a class is shared with other instances, but in most cases this is OK. It's been my experience that statics are used mainly as counters, so, in the class set the property to 0 then use it in each instance. The fact that each instance gets this property should not cause a problem.
>
>>>Static variables doesn't exist in VFP. You'll have to declare the variable elsewhere (maybe in a class property) to make it available each time the method is called.
>How do I set a 'static' variable in VF, just as I do it in C/C++?Originally the lift time of local variable is only within that procedure or function, how can I get it back as I come in afterwards?
>>
>>That wouldn't be adequate. A static variable of a class is shared across all instances of the class.
Previous
Reply
Map
View

Click here to load this message in the networking platform