Difference between revisions of "Error Messages/40349"

(Created page with '= Example Error Text = In the expression A.J, Variable A is not indexed by J = Cause = The syntax ''A.J'' is a way of naming an index, in this case an index of the array ''A'…')
 
 
Line 1: Line 1:
= Example Error Text =
+
[[Category: Error messages]]
  
In the expression A.J, Variable A is not indexed by J
+
== Example error text ==
  
= Cause =
+
:<code>''In the expression A.J, Variable A is not indexed by J''</code>
  
The syntax ''A.J'' is a way of naming an index, in this case an index of the array ''A'' having the identifier index identifier ''J''.  This syntax is used to refer to local indexes, since local indexes don't exist in the global namespace. 
+
== Cause ==
  
The indicated error occurs when none of the indexes of ''A'' are named ''J''.
+
The syntax <code>A.J</code> is a way of naming an index, in this case an index of the array <code>A</code> having the [[identifier]] index identifier <code>J</code>.  This syntax is used to refer to local indexes, since local indexes don't exist in the global namespace.
  
= See Also =
+
The indicated error occurs when none of the indexes of <code>A</code> are named <code>J</code>.
  
 +
==Remedies==
 +
Change the expression to use a valid index of the array.
 +
 +
== See Also ==
 +
* [[Arrays and Indexes]]
 +
* [[Identifier]]
 
* [[Local Indexes]]
 
* [[Local Indexes]]
 
<comments />
 

Latest revision as of 19:04, 28 March 2016


Example error text

In the expression A.J, Variable A is not indexed by J

Cause

The syntax A.J is a way of naming an index, in this case an index of the array A having the identifier index identifier J. This syntax is used to refer to local indexes, since local indexes don't exist in the global namespace.

The indicated error occurs when none of the indexes of A are named J.

Remedies

Change the expression to use a valid index of the array.

See Also

Comments


You are not allowed to post comments.