c_op_pr.htm

来自「Delphi脚本控件」· HTM 代码 · 共 103 行

HTM
103
字号
<html>
<head>
<link rel=stylesheet type="text/css" href="styles.css">
</head>
<body>

<h3>
paxC Operator Precedence
</h3>


<table border="1">

<TR VALIGN="top">
<TH width=39%>Operator</TH>
<TH width=61%>Description</TH>
</TR>

<TR VALIGN="top">
<TD width=39%>. [] ()</TD>
<TD width=61%>Field access, array indexing, function calls, and expression grouping</TD>
</TR>

<TR VALIGN="top">
<TD width=39%>++ &#0151; - ~ ! new &</TD>
<TD width=61%>Unary operators, object creation, delegate creation</TD>
</TR>

<TR VALIGN="top">
<TD width=39%>* / %</TD>
<TD width=61%>Multiplication, division, modulo division</TD>
</TR>

<TR VALIGN="top">
<TD width=39%>+ - +</TD>
<TD width=61%>Addition, subtraction, string concatenation</TD>
</TR>

<TR VALIGN="top">
<TD width=39%>&lt;&lt; &gt;&gt;</TD>
<TD width=61%>Bit shifting</TD>
</TR>

<TR VALIGN="top">
<TD width=39%>&lt; &lt;= &gt; </TD>
<TD width=61%>Less than, less than or equal, greater than, greater than or equal, instanceof</TD>
</TR>

<TR VALIGN="top">
<TD width=39%>== != === !==</TD>
<TD width=61%>Equality, inequality, strict equality, and strict inequality</TD>
</TR>

<TR VALIGN="top">
<TD width=39%>&amp;</TD>
<TD width=61%>Bitwise AND</TD>
</TR>

<TR VALIGN="top">
<TD width=39%>^</TD>
<TD width=61%>Bitwise XOR</TD>
</TR>

<TR VALIGN="top">
<TD width=39%>|</TD>
<TD width=61%>Bitwise OR</TD>
</TR>

<TR VALIGN="top">
<TD width=39%>&amp;&amp;</TD>
<TD width=61%>Logical AND</TD>
</TR>

<TR VALIGN="top">
<TD width=39%>||</TD>
<TD width=61%>Logical OR</TD>
</TR>

<TR VALIGN="top">
<TD width=39%>?:</TD>
<TD width=61%>Conditional</TD>
</TR>

<TR VALIGN="top">
<TD width=39%>= <I>OP</I>=</TD>
<TD width=61%>Assignment, assignment with operation</TD>
</TR>

<TR VALIGN="top">
<TD width=39%>,</TD>
<TD width=61%>Multiple evaluation</TD>
</TR>
     
</table>
<p>
<HR>
<font size = 1 color ="gray">
Copyright &copy; 1999-2005
VIRT Laboratory. All rights reserved.
</font>
</body>
</html>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?