private: Difference between revisions
Jump to navigation
Jump to search
Lou Montana (talk | contribs) m (Some wiki formatting) |
Lou Montana (talk | contribs) m (Some wiki formatting) |
||
Line 30: | Line 30: | ||
|s1= [[private]] variableName | |s1= [[private]] variableName | ||
|p1= variableName: [[String]] - e.g | |p1= variableName: [[String]] - e.g <sqf inline>"_myVar"</sqf> | ||
|r1= [[Nothing]] | |r1= [[Nothing]] | ||
Line 36: | Line 36: | ||
|s2= [[private]] variableNameList | |s2= [[private]] variableNameList | ||
|p21= variableNameList: [[Array]] of [[String]]s - e.g | |p21= variableNameList: [[Array]] of [[String]]s - e.g <sqf inline>["_target", "_damage"]</sqf> | ||
|r2= [[Nothing]] | |r2= [[Nothing]] | ||
Line 44: | Line 44: | ||
|s3since= arma3 1.54 | |s3since= arma3 1.54 | ||
|p41= _identifier: underscored [[Identifier|variable name]], for example | |p41= _identifier: underscored [[Identifier|variable name]], for example <sqf inline>_myVar</sqf> | ||
|p42= value: [[Anything]]: value to assign to the variable | |p42= value: [[Anything]]: value to assign to the variable | ||
Line 50: | Line 50: | ||
|r3= [[Nothing]] | |r3= [[Nothing]] | ||
|x1= <sqf>private _varname = "this is my new variable"; // since Arma 3 v1.54 | |x1= <sqf> | ||
private _varname = "this is my new variable"; // since Arma 3 v1.54 | |||
// identical, but less performant | // identical, but less performant | ||
Line 81: | Line 82: | ||
</sqf> | </sqf> | ||
|seealso= [[param]] [[params]] {{HashLink|Variables# | |seealso= [[param]] [[params]] {{HashLink|Variables#Scopes}} | ||
}} | }} | ||
Revision as of 17:08, 14 July 2022
Description
- Description:
- Sets a variable to the innermost scope as demonstrated in Example 3. See also param and params.
- Groups:
- Variables
Syntax 1
Syntax 2
- Syntax:
- private variableNameList
- Parameters:
- variableNameList: Array of Strings - e.g ["_target", "_damage"]
- Return Value:
- Nothing
Syntax 3
- Syntax:
- private _identifier = value
- Parameters:
- _identifier: underscored variable name, for example _myVar
- value: Anything: value to assign to the variable
- Return Value:
- Nothing
Examples
- Example 1:
- Example 2:
- Example 3:
- Example 4:
- _myvar = 123; systemChat str [_myvar]; // [123] call { systemChat str [_myvar]; // [123] private "_myvar"; systemChat str [_myvar]; // [any] _myvar = 345; systemChat str [_myvar]; // [345] }; systemChat str [_myvar]; // [123]
Additional Information
- See also:
- param params Variables - Scopes
Notes
-
Report bugs on the Feedback Tracker and/or discuss them on the Arma Discord or on the Forums.
Only post proven facts here! Add Note
- Posted on Aug 04, 2010 - 13:30 (UTC)
-
The higher scope is also the script from which the function has been called.
in script2.sqf:in script1.sqf: Game will display 2.
Insertingprivate "_a"
in the function prevents the change and so number 1 will be displayed on the screen.
- Posted on Feb 25, 2015 - 17:06 (UTC)
- Recursive loops require the use of private. Without it, your variables will be overwritten.
- Posted on Jan 31, 2018 - 10:37 (UTC)
-
This command is similar to javascript's let keyword.
EDIT: in the way that it scopes the variable to the innermost scope. Otherwise, let and private can behave differently - Lou Montana (talk)
Categories:
- Scripting Commands
- Introduced with Operation Flashpoint version 1.00
- Operation Flashpoint: New Scripting Commands
- Operation Flashpoint: Scripting Commands
- Operation Flashpoint: Elite: Scripting Commands
- ArmA: Armed Assault: Scripting Commands
- Arma 2: Scripting Commands
- Arma 2: Operation Arrowhead: Scripting Commands
- Take On Helicopters: Scripting Commands
- Arma 3: Scripting Commands
- Command Group: Variables