IIF 内可以进行赋值,为什么不起作用?

发布于 2024-11-30 13:48:41 字数 254 浏览 1 评论 0原文

工作:

publicity.Target = IIF(radioTarget1.Checked, "_blank", "_self").toString

不起作用:

IIF(radioTarget1.Checked, publicity.Target = "_blank", publicity.Target = "_self")

为什么第二个选项不起作用?

Work :

publicity.Target = IIF(radioTarget1.Checked, "_blank", "_self").toString

Doesn't work :

IIF(radioTarget1.Checked, publicity.Target = "_blank", publicity.Target = "_self")

Why isn't the second option working?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

勿忘心安 2024-12-07 13:48:41

因为您在函数调用内执行的不是赋值,而是比较。

它的作用与以下相同:

Dim result As Boolean
If radioTarget1.Checked Then
  result = (publicity.Target = "_blank")
Else
  result = (publicity.Target = "_self")
End If

Because it's not assignments you are doing inside the function call, it's comparisons.

It does the same as:

Dim result As Boolean
If radioTarget1.Checked Then
  result = (publicity.Target = "_blank")
Else
  result = (publicity.Target = "_self")
End If
机场等船 2024-12-07 13:48:41

IIF 是一个函数,而不是一个语言特性。

后两个参数是函数的潜在返回值的对象......而不是代码块。

http://msdn.microsoft.com/en -us/library/27ydhh0d%28v=VS.90%29.aspx

IIF is a function, not a language feature.

The second two parameters are objects that are potential return values of the function... not a block of code.

http://msdn.microsoft.com/en-us/library/27ydhh0d%28v=VS.90%29.aspx

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