如何处理 int 类型的会话变量中的 null

发布于 2024-10-19 19:32:38 字数 151 浏览 1 评论 0原文

如果session["Colindex"]为空。它抛出一条错误消息,指出对象引用未设置为 null。

int colid =(int) Session["ColIndex"];

任何帮助表示赞赏

If the session["Colindex"] is null. It throws a error msg saying that Object reference not set to null.

int colid =(int) Session["ColIndex"];

Any help is appreciated

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

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

发布评论

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

评论(3

内心旳酸楚 2024-10-26 19:32:38

使用 C# ?? null 合并运算符:

int colid = (int)(Session["ColIndex"] ?? 0);

这会将 colid 设置为 Session 中的值,如果为 null,则设置为 0。

Use C# ?? null coalescing operator:

int colid = (int)(Session["ColIndex"] ?? 0);

This will set colid to the value in Session, or 0 if it's null.

暮倦 2024-10-26 19:32:38

如果 Session["ColIndex"] 尚未创建,则没有任何值。由于 Session 是一个引用变量,因此没有对堆上对象实例的引用,这就是为什么您收到“未将对象引用设置为对象实例”错误。换句话说,会话变量从未被分配/创建。

在转换会话之前,您需要测试 null:

if ( Session["ColIndex"] != null )
{
  int colid = (int)Session["ColIndex"];
  // do other stuff
}

If the Session["ColIndex"] has yet to be created, then there is no value. As Session is a reference variable, there is no reference to the instance of the object on the heap which is why you are receiving the "Object reference not set to an instance of an object" error. In other words, the Session variable was never assigned/created.

You'll need to test for null before casting your session:

if ( Session["ColIndex"] != null )
{
  int colid = (int)Session["ColIndex"];
  // do other stuff
}
时光无声 2024-10-26 19:32:38

我不知道这适用于什么语言,但您可能需要在转换为 int 之前测试 null。

i don't know what language this is for, but you probably need to test for null before casting to int.

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