Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 2 years ago.
该语句
variable1 = variable2 == variable
分配variable1 actiable 2 == variable3的布尔值(true或false)的值(如果它们相等)。
variable1
actiable 2 == variable3
相当于
if variable2 == variable3 { variable1 = true } else { variable1 = false }
The statement
assigns variable1 the value of the boolean (true or false) of the result of variable2 == variable3 (if they are equal).
variable2 == variable3
It's equivalent to
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
暂无简介
文章 0 评论 0
接受
发布评论
评论(1)
该语句
分配
variable1
actiable 2 == variable3
的布尔值(true或false)的值(如果它们相等)。相当于
The statement
assigns
variable1
the value of the boolean (true or false) of the result ofvariable2 == variable3
(if they are equal).It's equivalent to