C++ 运算符的优先级和关联性表

C++ 运算符的优先级和关联性表

  • 1. Precedence and associativity (优先级和结合性)
  • 2. Alternative spellings (替代拼写)
  • 3. C++ operator precedence and associativity table (C++ 运算符的优先级和关联性表)
  • References

C++ documentation (C++ 文档)
https://learn.microsoft.com/en-us/cpp/cpp/
https://learn.microsoft.com/zh-cn/cpp/cpp/

C++ built-in operators, precedence, and associativity (C++ 内置运算符、优先级和关联性)
https://learn.microsoft.com/en-us/cpp/cpp/cpp-built-in-operators-precedence-and-associativity
https://learn.microsoft.com/zh-cn/cpp/cpp/cpp-built-in-operators-precedence-and-associativity

The C++ language includes all C operators and adds several new operators. Operators specify an evaluation to be performed on one or more operands.
C++ 语言包括所有 C 运算符,并添加多个新的运算符。运算符指定对一个或多个操作数执行的计算。

1. Precedence and associativity (优先级和结合性)

Operator precedence specifies the order of operations in expressions that contain more than one operator. Operator associativity specifies whether, in an expression that contains multiple operators with the same precedence, an operand is grouped with the one on its left or the one on its right.
运算符优先级指定了包含多个运算符的表达式中的运算顺序。运算符关联性指定了在包含多个具有相同优先级的运算符的表达式中,操作数是与其左侧还是右侧的操作数组合。

precedence [ˈpresɪdəns]:n. 优先,优先权
associativity [ə'səʊʃəˌtɪvɪtɪ]:n. 可结合性,结合体,缔合性

2. Alternative spellings (替代拼写)

C++ specifies alternative spellings for some operators. In C, the alternative spellings are provided as macros in the <iso646.h> header. In C++, these alternatives are keywords, and use of <iso646.h> or the C++ equivalent <ciso646> is deprecated.
C++ 为某些运算符指定了替代拼写。在 C 中,替代拼写在 <iso646.h> 标头中作为宏提供。在 C++ 中,这些替代项是关键字,<iso646.h> 或 C++ 等效的 <ciso646> 已弃用。

3. C++ operator precedence and associativity table (C++ 运算符的优先级和关联性表)

The following table shows the precedence and associativity of C++ operators (from highest to lowest precedence). Operators with the same precedence number have equal precedence unless another relationship is explicitly forced by parentheses.
下表显示 C++ 运算符的优先级和关联性 (从最高优先级到最低优先级)。优先级别编号相同的运算符具有等同的优先级别,除非由括号显式施加另一种关系。

Operator DescriptionOperatorAlternative (替代项)
Group 1 precedence, no associativity (第 1 组优先级,无关联性)
Scope resolution (作用域解析运算符)::
Group 2 precedence, left to right associativity (第 2 组优先级,从左到右关联)
Member selection (object or pointer). or ->
Array subscript (数组下标)[]
Function call (函数调用)()
Postfix increment (后缀递增)++
Postfix decrement (后缀递减)--
Type name (类型名称)typeid
Constant type conversion (常量类型转换)const_cast
Dynamic type conversion (动态类型转换)dynamic_cast
Reinterpreted type conversion (重新解释的类型转换)reinterpret_cast
Static type conversion (静态类型转换)static_cast
Group 3 precedence, right to left associativity (第 3 组优先级,从右到左关联)
Size of object or type (对象或类型的大小)sizeof
Prefix increment (前缀递增)++
Prefix decrement (前缀递减)--
One’s complement (二进制反码)~compl
Logical not (逻辑“非”)!not
Unary negation (一元求反)-
Unary plus (一元加)+
Address-of&
Indirection (间接寻址)*
Create object (创建对象)new
Destroy object (销毁对象)delete
Cast (强制转换)()
Group 4 precedence, left to right associativity (第 4 组优先级,从左到右关联)
Pointer-to-member (objects or pointers).* or ->*
Group 5 precedence, left to right associativity (第 5 组优先级,从左到右关联)
Multiplication (乘法)*
Division (除法)/
Modulus (取模)%
Group 6 precedence, left to right associativity (第 6 组优先级,从左到右关联)
Addition (加法)+
Subtraction (减法)-
Group 7 precedence, left to right associativity (第 7 组优先级,从左到右关联)
Left shift ()<<
Right shift ()>>
Group 8 precedence, left to right associativity (第 8 组优先级,从左到右关联)
Less than (小于)<
Greater than (大于)>
Less than or equal to (小于或等于)<=
Greater than or equal to (大于或等于)>=
Group 9 precedence, left to right associativity (第 9 组优先级,从左到右关联)
Equality (等于)==
Inequality (不相等)!=not_eq
Group 10 precedence left to right associativity (第 10 组优先级,从左到右关联)
Bitwise AND (按位“与”)&bitand
Group 11 precedence, left to right associativity (第 11 组优先级,从左到右关联)
Bitwise exclusive OR (按位“异或”)^xor
Group 12 precedence, left to right associativity (第 12 组优先级,从左到右关联)
Bitwise inclusive OR (按位“与或”)|bitor
Group 13 precedence, left to right associativity (第 13 组优先级,从左到右关联)
Logical AND (逻辑与)&&and
Group 14 precedence, left to right associativity (第 14 组优先级,从左到右关联)
Logical OR (逻辑或)||or
Group 15 precedence, right to left associativity (第 15 组优先级,从右到左关联)
Conditional (条件)? :
Assignment=
Multiplication assignment (乘法赋值)*=
Division assignment (除法赋值)/=
Modulus assignment (取模赋值)%=
Addition assignment (加法赋值)+=
Subtraction assignment (减法赋值)-=
Left-shift assignment (左移赋值)<<=
Right-shift assignment (右移赋值)>>=
Bitwise AND assignment (按位“与”赋值)&=and_eq
Bitwise inclusive OR assignment (按位“与或”赋值)|=or_eq
Bitwise exclusive OR assignment (按位“异或”赋值)^=xor_eq
throw expressionthrow
Group 16 precedence, left to right associativity (第 16 组优先级,从左到右关联)
Comma,

References

[1] Yongqiang Cheng, https://yongqiang.blog.csdn.net/
[2] C++ built-in operators, precedence, and associativity, https://learn.microsoft.com/en-us/cpp/cpp/cpp-built-in-operators-precedence-and-associativity

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/diannao/40940.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

网络IO模型之多路复用器.md

多路复用是什么&#xff1f;怎么理解&#xff1f; 本文主要涉及为 程序中处理网络IO时的模型&#xff0c;对于系统内核而言网络IO模型。这里只做普及使用 前置知识&#xff0c;什么是IO&#xff1f;怎么理解IO IO其实就是In和Out。中文翻译是输入和输出&#xff0c;只要涉及到输…

clone()方法

在Java中&#xff0c;clone() 方法是一个非常有趣且强大的工具&#xff0c;用于创建对象的一个副本。这个方法位于 Object 类中&#xff0c;因此可以被所有类使用。让我们讨论一下它的几个要点&#xff1a; 什么是克隆&#xff1f; 克隆就是创建一个对象的新副本&#xff0c;这…

2005-2022全国及各省家庭承包耕地流转总面积及经营耕地面积数据(无缺失)

2005-2022全国及各省家庭承包耕地流转总面积及经营耕地面积数据&#xff08;无缺失&#xff09; 1、时间&#xff1a;2005-2022年 2、范围&#xff1a;全国及30省 3、指标&#xff1a;家庭承包耕地流转总面积、家庭承包经营耕地面积、土地流转率、 4、来源&#xff1a;农村…

《web应用技术》第十一次课后作业

验证过滤器进行权限验证的原理。 创建Filter&#xff1a; package com.example.filter;import javax.servlet.*; import javax.servlet.annotation.WebFilter; import java.io.IOException;WebFilter(urlPatterns "/*") public class DemoFilter implements Filter …

【3维BFS】个人练习-Leetcode-LCP 79. 提取咒文

题目链接&#xff1a;https://leetcode.cn/problems/kjpLFZ/ 题目大意&#xff1a;给一个矩阵matrix[][]&#xff0c;元素为小写英文字母。给一个字符串mantra&#xff0c;求从矩阵的(0,0)位置开始&#xff0c;可以移动&#xff08;上下左右&#xff09;或者提取字母&#xff…

怎么搭建个人博客教程,附云主机选购指南

一、搭建个人博客教程 1. 规划博客内容与技术栈 确定博客主题&#xff1a;首先明确博客的定位和主题&#xff0c;这将影响后续的技术选择和内容规划。选择技术栈&#xff1a;根据个人偏好和技术背景&#xff0c;选择合适的建站技术。例如&#xff0c;可以使用WordPress&#…

adobe pdf设置默认打开是滚动而不是单页视图

上班公司用adobe pdf&#xff0c;自己还不能安装其它软件。 每次打开pdf&#xff0c;总是默认单页视图&#xff0c;修改滚动后&#xff0c;下次打开又 一样&#xff0c;有时候比较烦。 后面打开编辑->首选项&#xff0c; 如下修改&#xff0c;下次打开就是默认滚动了

Websocket通信实战项目(图片互传应用)+PyQt界面+python异步编程(async) (上)服务器端python实现

Rqtz : 个人主页 ​​ 共享IT之美&#xff0c;共创机器未来 ​ Sharing the Beauty of IT and Creating the Future of Machines Together 目录 项目背景 ​编辑​专有名词介绍 服务器GUI展示 功能(位置见上图序号) 客户端GUI展示&#xff08;h5cssjs&#xf…

flask的进阶使用方法

【 一 】一对多关系 # 1 一对一 [本质就是一对多--》多的那个唯一] # 2 一对多 # 3 多对多1.1 关系 #### 一对多关系 class Hobby(Base):__tablename__ hobbyid Column(Integer, primary_keyTrue)caption Column(String(50), default篮球)def __str__(self):return sel…

C++多态(虚函数,纯虚函数,抽象类)

一.多态 1.理解&#xff1a; 多种形态&#xff0c;多种形式 eg:多个派生类均把基类的方法run重新实现&#xff0c;但是实现的方式不同&#xff0c;体现了多种形式&#xff0c;即为多态 2.分类 &#xff08;1&#xff09;编译时的多态&#xff1a;在编译过程中确定了同名操…

Java中的代码优化与重构策略

Java中的代码优化与重构策略 大家好&#xff0c;我是免费搭建查券返利机器人省钱赚佣金就用微赚淘客系统3.0的小编&#xff0c;也是冬天不穿秋裤&#xff0c;天冷也要风度的程序猿&#xff01; 1. 引言 代码优化与重构在软件开发中扮演着至关重要的角色。优秀的代码不仅令人…

将游戏降权运行 2024年,防止游戏检测,泄漏个人隐私

不得不说&#xff0c;现在的游戏&#xff0c;胆子是真的越来越大了。很多都带了个启动器&#xff0c;你开着游戏的时候他就给他开多了1个扫描器&#xff0c;看下你有没看一些小孩不宜的&#xff0c;玩游戏不宜打开的软件什么的&#xff0c;包括你的MAC地址啊&#xff0c;你当前…

pydub、ffmpeg 音频文件声道选择转换、采样率更改

快速查看音频通道数和每个通道能力判断具体哪个通道说话&#xff1b;一般能量大的那个算是说话 import wave from pydub import AudioSegment import numpy as npdef read_wav_file(file_path):with wave.open(file_path, rb) as wav_file:params wav_file.getparams()num_cha…

量化交易:金融投资的新篇章

在金融投资的世界里&#xff0c;量化交易正逐渐成为一股不可忽视的力量。它以数据驱动和算法决策为特点&#xff0c;为投资者提供了一种全新的交易方式。本文将深入探讨量化交易的基本概念、优势、挑战以及如何开始使用量化交易策略。 量化交易的定义与起源 量化交易&#xf…

Android10以上实现获取设备序列号功能

Android10以上实现获取设备唯一标识&#xff0c;目前只支持华为和荣耀设备。实现原理&#xff1a;通过无障碍服务读取序列号界面。 public class DeviceHelper implements Application.ActivityLifecycleCallbacks {static final String TAG "WADQ_DeviceHelper";s…

Zoom使用的基本步骤和注意事项

Zoom是一款功能强大的视频会议软件&#xff0c;广泛应用于远程办公、在线教育、团队协作等多个场景。以下是Zoom使用的基本步骤和注意事项&#xff1a; 一、注册与登录 注册Zoom账户&#xff1a; 访问Zoom官方网站&#xff08;如zoom.us&#xff09;&#xff0c;点击“注册”…

Android Enable 和clickable

setEnabled 使能控件 设置为false&#xff0c;该控件永远不会活动&#xff0c;不管设置为什么属性&#xff0c;都无效&#xff1b; 设置为true&#xff0c;表明激活该控件&#xff0c;控件处于活动状态&#xff0c;处于活动状态&#xff0c;就能响应事件了&#xff0c;比如触摸…

mybatis实现动态sql

第一章、动态SQL MyBatis 的强大特性之一便是它的动态 SQL。如果你有使用 JDBC 或其它类似框架的经验&#xff0c;你就能体会到根据不同条件拼接 SQL 语句的痛苦。例如拼接时要确保不能忘记添加必要的空格&#xff0c;还要注意去掉列表最后一个列名的逗号。利用动态 SQL 这一特…

2024北京大健康展,北京健康生活产品展览会十月举办

2024北京健博会&#xff0c;立足北京&#xff0c;效应辐射全国买方市场&#xff0c;助力健康中国事业建设&#xff1b; 2024第11届中国&#xff08;北京&#xff09;国际大健康产业博览会 The 2024 China (Beijing) International Health Service Expo 时间&#xff1a;2024年…