aboutsummaryrefslogtreecommitdiffstats
path: root/docs/source/arduino/assignment.rst
blob: 8b851e89287a19013ce012194f3accba137480c1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
.. highlight:: cpp

.. _arduino-assignment:

= assignment operator (single equal sign)
=========================================

Stores the value to the right of the equal sign in the variable to
the left of the equal sign.


The single equal sign in the C++ programming language is called the
assignment operator. It has a different meaning than in algebra
class where it indicated an equation or equality. The assignment
operator tells the microcontroller to evaluate whatever value or
expression is on the right side of the equal sign, and store it in
the variable to the left of the equal sign [#fgross]_.



Example
-------

::

     int sensVal;                 // declare an integer variable named sensVal
     senVal = analogRead(0);       // store the (digitized) input voltage at analog pin 0 in SensVal



Programming Tips
----------------

The variable on the left side of the assignment operator ( = sign )
needs to be able to hold the value stored in it. If it is not large
enough to hold a value, the value stored in the variable will be
incorrect.



Don't confuse the assignment operator [ = ] (single equal sign)
with the comparison operator [ == ] (double equal signs), which
evaluates whether two expressions are equal.



See Also
--------


-  `if (comparison operators) <http://arduino.cc/en/Reference/If>`_
-  `char <http://arduino.cc/en/Reference/Char>`_
-  `int <http://arduino.cc/en/Reference/Int>`_
-  `long <http://arduino.cc/en/Reference/Long>`_


.. rubric:: Footnotes

   Experienced C++ programmers know this to be an oversimplification
   of what happens when the variable on the left hand side is an
   object.  See Richard Gillam's wonderful and scary `The Anatomy of
   the Assignment Operator
   <http://icu-project.org/docs/papers/cpp_report/the_anatomy_of_the_assignment_operator.html>`_