什么是<>意思? [英] What does <> mean?

查看:307
本文介绍了什么是<>意思?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

 $ b $我已经在SQL和VB中看到过,我现在可以逆向工程化一个Excel speadsheet, b = IF(D23  -  0,Insufficent,0)

我将其转换为ActionScript:

 

var result:String = [condition]? 0:不足

但我不确定什么是D23? 0意味着,它只是不相等?

解决方案

是的,这意味着不相等,小于或大于比。
例如

 如果x < y然后

可以读作



如果 x小于y x 大于y 然后



逻辑结果为如果x是任何等于y


I have seen this before in SQL and VB, I am now reverse engineering an Excel speadsheet and have come across the following formula:

=IF(D23<>0,"Insufficent",0)

I am converting it to ActionScript:


var result:String = [condition] ? 0 : "Insufficient";

but I am unsure of what D23 <> 0 means, is it simply "not equal"?

解决方案

Yes, it means "not equal", either less than or greater than. e.g

If x <> y Then

can be read as

if x is less than y or x is greater than y then

The logical outcome being "If x is anything except equal to y"

这篇关于什么是&lt;&gt;意思?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆