• C语言运算符优先级和结合性


       运算符优先级和结合性

    优先级                                       运算符 结合性
                                            ()  -> 左结合性
                          !  ~  ++  --   +  -  *  &(type)sizeof 右结合性
                                         *    /  % 左结合性
                                             +    - 左结合性
                                      <<     >>     >>> 左结合性
    (最高)                                  <  <=  >  >= 左结合性
                                              ==  != 左结合性
                                                   & 左结合性
                                                   ^ 左结合性
                                                    | 左结合性
                                                   && 左结合性
                                                    || 左结合性
                                                   ?  : 右结合性
                =  +=   -=  *=  /=  %=  &=  ^=  |=  <<=  >>= 右结合性
                                                    , 左结合性
  • 相关阅读:
    一、Docker前提介绍
    CentOS6.10忘记MySQL8密码的解决办法
    阿里云服务器结合域名解析部署springboot项目到Tomcat
    Javap指令集
    微服务之路(十一)spring cloud stream
    微服务之路(十)spring cloud zuul
    微服务之路(九)spring cloud feign
    微服务之路(八)spring cloud netflix hystrix
    python连接oracle数据库
    单元测试-unittest模块
  • 原文地址:https://www.cnblogs.com/ming-long/p/9203888.html
Copyright © 2020-2023  润新知