private: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (Text replacement - " \|(x[0-9]|p[0-9]{1,2}|descr|game[0-9]|version[0-9]|s[0-9]|exec|r[0-9]|arg|eff|branch|serverExec|gr[0-9]|mp|pr|seealso) +=" to " |$1=")
m (Some wiki formatting)
 
(22 intermediate revisions by 2 users not shown)
Line 1: Line 1:
{{RV|type=command
{{RV|type=command


| ofp
|game1= ofp
|version1= 1.00


|1.00
|game2= ofpe
|version2= 1.00
 
|game3= arma1
|version3= 1.00
 
|game4= arma2
|version4= 1.00
 
|game5= arma2oa
|version5= 1.50
 
|game6= tkoh
|version6= 1.00
 
|game7= arma3
|version7= 0.50


|gr1= Variables
|gr1= Variables


| Sets a variable to the innermost scope as demonstrated in Example 3. See also [[param]] and [[params]].
|descr= Sets a variable to the innermost scope (see {{Link|#Example 3}}). See also [[param]] and [[params]].
{{Feature | Informative | [[private]] variables '''must''' start with an underscore: <tt>[[private]] '''{{Color|red|_}}'''myVar1 {{=}} "myVar";</tt> - see [[Identifier]].}}
{{Feature|informative|[[private]] variables '''must''' start with an underscore: {{hl|c= [[private]] '''{{Color|red|_}}'''myVar1 = "myVar";}} - see [[Identifier]].}}
{{Feature | Warning | '''Always''' make your local variables '''private''' (through [[private]] or [[params]]) in order to avoid [[Variables#Scopes|overwriting a local variable of the same name]].}}
{{Feature|warning|'''Always''' make your local variables '''private''' (through [[private]] or [[params]]) in order to avoid [[Variables#Scopes|overwriting a local variable of the same name]].}}


| [[private]] variableName
|s1= [[private]] variableName


|p1= variableName: [[String]] - e.g <tt>"_myVar"</tt>
|p1= variableName: [[String]] - e.g <sqf inline>"_myVar"</sqf>


|r1= [[Nothing]]
|r1= [[Nothing]]
Line 19: Line 36:
|s2= [[private]] variableNameList
|s2= [[private]] variableNameList


|p21= variableNameList: [[Array]] of [[String]]s, e.g <tt>["_target", "_damage"]</tt>
|p21= variableNameList: [[Array]] of [[String]]s - e.g <sqf inline>["_target", "_damage"]</sqf>


|r2= [[Nothing]]
|r2= [[Nothing]]


|s3= [[private]] _identifier = value {{Since|arma3|1.53.132932|y}}
|s3= [[private]] _identifier = value
 
|s3since= arma3 1.54


|p41= _identifier: underscored [[Identifier|variable name]], for example ''_myVar''
|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 31: Line 50:
|r3= [[Nothing]]
|r3= [[Nothing]]


|x1= <code>[[private]] _varname = "this is my new variable"; {{cc|since {{arma3}} v1.53 only}}
|x1= <sqf>
private _varname = "this is my new variable"; // since {{arma3}} v1.54


{{cc|identical, but less performant}}
// identical, but less performant
[[private]] "_varname";
private "_varname";
_varname = "this is my new variable";</code>
_varname = "this is my new variable";
</sqf>


|x2= <code>[[private]] ["_varname1", "_varname2"];
|x2= <sqf>
private ["_varname1", "_varname2"];
_varname1 = "variable 1";
_varname1 = "variable 1";
_varname2 = "variable 2";</code>
_varname2 = "variable 2";
</sqf>


|x3=<code>_lol = 123; [[call]] { [[hint]] [[str]] [_lol] }; {{cc|[123]}}
|x3= <sqf>
_lol = 123; [[call]] { [[private]] "_lol"; [[hint]] [[str]] [_lol] }; {{cc|[any]}}</code>
_lol = 123; call { hint str [_lol] }; // [123]
_lol = 123; call { private "_lol"; hint str [_lol] }; // [any]
</sqf>


|x4=<code>_myvar = 123;
|x4= <sqf>
[[systemChat]] [[str]] [_myvar]; {{cc|[123]}}
_myvar = 123;
[[call]] {
systemChat str [_myvar]; // [123]
[[systemChat]] [[str]] [_myvar]; {{cc|[123]}}
call {
[[private]] "_myvar";
systemChat str [_myvar]; // [123]
[[systemChat]] [[str]] [_myvar]; {{cc|[any]}}
private "_myvar";
systemChat str [_myvar]; // [any]
_myvar = 345;
_myvar = 345;
[[systemChat]] [[str]] [_myvar]; {{cc|[345]}}
systemChat str [_myvar]; // [345]
};
};
[[systemChat]] [[str]] [_myvar]; {{cc|[123]}}</code>
systemChat str [_myvar]; // [123]
</sqf>


| [[param]], [[params]], {{HashLink|Variables#Scope}}
|seealso= [[param]] [[params]] {{Link|Variables#Scopes}}
}}
}}


<dl class="command_description">
{{Note
<dt><dt>
|user= Faguss
<dd class="notedate">Posted on August 4, 2010</dd>
|timestamp= 20100804133000
<dt class="note">[[User:Faguss|Faguss]]</dt>
|text= The higher scope is also the script from which the function has been called.<br>
<dd class="note">The higher scope is also the script from which the function has been called.<br>
in '''script2.sqf''':
in '''script2.sqf''':
<code>_a = 2;</code>
<sqf>_a = 2;</sqf>
in '''script1.sqf''':
in '''script1.sqf''':
<code>_a = 1;
<sqf>
[[call]] [[compile]] [[preprocessFileLineNumbers]] "script2.sqf";
_a = 1;
[[hint]] format ["%1", _a];</code>
call compile preprocessFileLineNumbers "script2.sqf";
<br>
hint format ["%1", _a];
</sqf>
Game will display 2.<br>
Game will display 2.<br>
Inserting {{ic|[[private]] "_a"}} in the function prevents the change and so number 1 will be displayed on the screen.
Inserting <sqf inline>private "_a"</sqf> in the function prevents the change and so number 1 will be displayed on the screen.
<dt><dt>
}}
<dd class="notedate">Posted on February 25, 2015 - 17:06 (UTC)</dd>
<dt class="note">[[User:DreadedEntity|DreadedEntity]]</dt>
<dd class="note">
Recursive loops require the use of [[private]]. Without it, your variables will be overwritten.
</dd>
<dt><dt>
<dd class="notedate">Posted on January 31, 2018 - 10:37 (UTC)</dd>
<dt class="note">[[User:654wak654|654wak654]]</dt>
<dd class="note">
This command is ''similar'' to javascript's [https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/let let] keyword.<br>
'''EDIT:''' in the way that it scopes the variable to the innermost scope. Otherwise, let and private can behave differently - [[User:Lou Montana|Lou Montana]] ([[User talk:Lou Montana|talk]])
</dd>


</dl>
{{Note
|user= DreadedEntity
|timestamp= 20150225170600
|text= Recursive loops require the use of [[private]]. Without it, your variables will be overwritten.
}}


 
{{Note
{{GameCategory|arma1|Scripting Commands}}
|user= 654wak654
{{GameCategory|arma2|Scripting Commands}}
|timestamp= 20180131103700
{{GameCategory|arma3|Scripting Commands}}
|text= This command is ''similar'' to javascript's {{Link|https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/let|let}} keyword.<br>
{{GameCategory|tkoh|Scripting Commands}}
'''EDIT:''' in the way that it scopes the variable to the innermost scope. Otherwise, let and private can behave differently - [[User:Lou Montana|Lou Montana]] ([[User talk:Lou Montana|talk]])
}}

Latest revision as of 17:52, 26 February 2024

Hover & click on the images for description

Description

Description:
Sets a variable to the innermost scope (see Example 3). See also param and params.
private variables must start with an underscore: private _myVar1 = "myVar"; - see Identifier.
Always make your local variables private (through private or params) in order to avoid overwriting a local variable of the same name.
Groups:
Variables

Syntax 1

Syntax:
private variableName
Parameters:
variableName: String - e.g "_myVar"
Return Value:
Nothing

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:
private _varname = "this is my new variable"; // since Arma 3 v1.54 // identical, but less performant private "_varname"; _varname = "this is my new variable";
Example 2:
private ["_varname1", "_varname2"]; _varname1 = "variable 1"; _varname2 = "variable 2";
Example 3:
_lol = 123; call { hint str [_lol] }; // [123] _lol = 123; call { private "_lol"; hint str [_lol] }; // [any]
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
Faguss - c
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:
_a = 2;
in script1.sqf:
_a = 1; call compile preprocessFileLineNumbers "script2.sqf"; hint format ["%1", _a];
Game will display 2.
Inserting private "_a" in the function prevents the change and so number 1 will be displayed on the screen.
DreadedEntity - c
Posted on Feb 25, 2015 - 17:06 (UTC)
Recursive loops require the use of private. Without it, your variables will be overwritten.
654wak654 - c
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)