Renesas M16C PC4701 用户手册

下载
页码 294
 
 
 
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". 
 
 
254