首页 > 其他 > 详细

Julia - 三元运算符

时间:2018-08-24 01:27:06      阅读:227      评论:0      收藏:0      [点我收藏+]

三元运算符的格式:

a ? b : c

a 是条件表达式,如果条件 a 为真,就执行 b;如果条件 a 为假,就执行 c

二选一

julia> println(1 < 2 ? "1 is smaller than 2" : "1 is bigger than 2")
1 is smaller than 2

julia> println(1 > 2 ? "1 is smaller than 2" : "1 is bigger than 2")
1 is bigger than 2

三选一

julia> f(x, y) = println(x < y ? "x is smaller than y" : x > y ? "x is bigger than y" : "x is equal to y")
f (generic function with 1 method)

julia> f(1, 2)
x is smaller than y

julia> f(2, 1)
x is bigger than y

julia> f(1, 1)
x is equal to y

: 前后的表达式,只有在对应条件表达式为 true 或 false 时才执行

julia> f(x) = (println(x); x)
f (generic function with 2 methods)

julia> 1 < 2 ? f("yes") : f("no")
yes
"yes"

julia> 1 > 2 ? f("yes") : f("no")
no
"no"

 

Julia - 三元运算符

原文:https://www.cnblogs.com/sch01ar/p/9527329.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!