当前位置:网站首页>运算符
运算符
2022-07-07 14:31:00 【kenma】
算术运算符
关系运算符
关系运算符的结果都是Boolean型的,要么true,要么false 经常用在if结构中的条件或者循环结构的条件。
逻辑运算符
用于连接多个条件,最后结果也是boolean型的
&&与&的区别
&& 如果判断第一个条件为f,则直接判断成f,效率高。
& 要全部判断完条件,效率低。
开发中,一般用&&提高效率。
赋值运算符
将某个运算后的值,赋给指定的变量。
三元运算符
基本语法
条件表达式? 表达式1:表达式2;
运算规则:
true 输出表达式1
false 输出表达式2
位运算符
运算符优先级
键盘输入语句
进制
边栏推荐
- 模拟Servlet的本质
- Tidb cannot start after modifying the configuration file
- Spark Tuning (III): persistence reduces secondary queries
- JS中null NaN undefined这三个值有什么区别
- Asyncio concept and usage
- Leetcode-231-2的幂
- Introduction to ThinkPHP URL routing
- spark调优(三):持久化减少二次查询
- How to determine whether the checkbox in JS is selected
- Common training data set formats for target tracking
猜你喜欢
Logback日志框架第三方jar包 免费获取
全网“追杀”钟薛高
【C 语言】 题集 of Ⅹ
Personal notes of graphics (4)
The difference and working principle between compiler and interpreter
Introduction and use of gateway
Three. JS series (1): API structure diagram-1
预售17.9万,恒驰5能不能火?产品力在线,就看怎么卖
如何快速检查钢网开口面积比是否符合 IPC7525
Advanced C language -- function pointer
随机推荐
"The" "PIP" "entry cannot be recognized as the name of a cmdlet, function, script file, or runnable program."
修改配置文件后tidb无法启动
three.js打造酷炫下雪效果
ORACLE进阶(六)ORACLE expdp/impdp详解
js中复选框checkbox如何判定为被选中
MySQL中, 如何查询某一天, 某一月, 某一年的数据
两类更新丢失及解决办法
What is the difference between IP address and physical address
Imitate the choice of enterprise wechat conference room
JS 模块化
Shandong old age Expo, 2022 China smart elderly care exhibition, smart elderly care and aging technology exhibition
spark调优(三):持久化减少二次查询
Laravel5.1 路由 -路由分组
Vs2019 configuration matrix library eigen
Unity3d click events added to 3D objects in the scene
统计学习方法——感知机
【DesignMode】代理模式(proxy pattern)
laravel中将session由文件保存改为数据库保存
logback. XML configure logs of different levels and set color output
二叉搜索树(特性篇)