变量之一的运算结果为null(空)
我正在将 SAS 代码转换为 C# 代码,但没有运行 SAS 代码的平台,我只有源代码,并且我在 SAS 中有一行代码,其中一个变量为空,另一个变量不是,我会想知道 y 在下面的操作中会产生什么结果。
x = .
y = 5 - x
x 为空 (null) 请指教。
预先非常感谢您的帮助。
I am converting SAS code to C# code and I don't have platform to run SAS code, what I have only source code, and I have line of the code in SAS where one of the variables is empty and another is not and I would like to know what would be result of y in following operation.
x = .
y = 5 - x
x is empty (null)
Please advice.
Thanks a lot in advance for your help.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我相信 y 的结果将会是 。 (空的)
当您使用空(null)变量执行操作时,结果为 null。
I believe the result of y will be . (empty)
When you perform an operation with an empty(null) variable the result is null.