变量之一的运算结果为null(空)

发布于 2024-10-16 02:24:46 字数 195 浏览 1 评论 0原文

我正在将 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

毁梦 2024-10-23 02:24:46

我相信 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文