VB中IIF(a>5,-1,

问题描述:

VB中IIF(a>5,-1,

这句话是说,当 a > 5时 此表达式为-1,否则为0
例如:
a=iif(a=1,2,3)
相当于
if a=1 then
a=2
else
a=3
endif