Renesas PC7501 Manual de usuario Pagina 259

  • Descarga
  • Añadir a mis manuales
  • Imprimir
  • Pagina
    / 286
  • Tabla de contenidos
  • MARCADORES
  • Valorado. / 5. Basado en revisión del cliente
Vista de pagina 258
10 C/C++ Expressions
249
10.1.2 Scope Resolution
The scope resolution operator :: is available as following.
Global scope: ::valiable name
::x, ::val
Class scope: class name::member name, class name::class name::member name, e.g.
T::member, A::B::member
10.1.3 Mathematical Operators
You can use the addition (+), subtraction (-), multiplication (*), and division (/) mathematical
operators. The following shows the order of priority in which they are evaluated.
(*), (/), (+), (-)
Notes
There is no support currently for mathematical operators for floating point numbers.
10.1.4 Pointers
Pointers are indicated by the asterisk (*). You can use pointer to pointers **, and pointer to pointer to
pointers ***, etc.
Examples: "*variable_name", "**variable_name", etc.
Notes
Immediate values cannot be processed as pointers. That is, you cannot specify *0xE000, for
example.
10.1.5 Reference
References are indicated by the ampersand (&). You can only specify "&variable_name".
Vista de pagina 258
1 2 ... 254 255 256 257 258 259 260 261 262 263 264 ... 285 286

Comentarios a estos manuales

Sin comentarios