我如何使用“?” MVC 中的运算符?
我有一个 MVC 应用程序,我想使用此 ?
选项。
请告诉我该怎么做。我已经写过:
int? isfeature;
但是,在将值插入数据库时,我该如何使用它?
它给出以下错误:
Cannot convert from 'int?' to 'int'.
I have an MVC application and I want to use this ?
option.
Please tell me how I can do this. I have written:
int? isfeature;
but, while inserting the value in database, how do I use it?
It is giving following error:
Cannot convert from 'int?' to 'int'.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
整数?是 Nullable的简写,这意味着该值可以是整数或 null。将 Nullable转换为对于 int,使用
or
如果值为 null,则会抛出异常,因此您也可以使用
0 作为默认值。
int? is a shorthand for Nullable<int>, which means that the value can either be an integer or null. To convert a Nullable<int> to an int, use
or
This will throw an exception if the value is null, so you can also use
to use 0 as a default value.
你的意思是这样的吗?
$foo = $foo == 1 ? $foo : $bar;
因为我不太明白你的问题......
do you mean something like this?
$foo = $foo == 1 ? $foo : $bar;
Because I don't understand much of your question...