check 关键字,用于检查 C# 中指定位数

发布于 2024-11-03 19:19:52 字数 186 浏览 0 评论 0原文

我们能否在 C# 中使用 check 来检查特定位数的溢出,例如 25、30 等。

int A = 0;
int B = 1000;

checked 
{
   A += 1000000; 
   B = B * A; 
}

例如,在上面的示例中,是否可以检查 A 是否有 27 位溢出。

Can we use checked in C# for checking overflow for a particular number of bits, like say 25, 30, etc.

int A = 0;
int B = 1000;

checked 
{
   A += 1000000; 
   B = B * A; 
}

For example, in the above example, can A be checked for 27 bits overflow.

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

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

发布评论

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

评论(1

糖粟与秋泊 2024-11-10 19:19:52

不,C# 中不支持类似的功能。

最接近的可能是编写自己的方法,该方法使用“正常”类型的溢出检查(int 为 32 位,long 等为 64 位),然后对有效值施加了一些额外的限制。

理想情况下,我建议为此创建您自己的包装类型,例如

public struct Int25
{
    private readonly int value;

    // Constructor etc, and operators which always make sure the result
    // is within the appropriate range
}

No, there's nothing like that supported in C#.

The closest you could probably come would be to write your own method which used the "normal" type of overflow checking (32 bits for int, 64 for long etc) and then also imposed some extra restrictions on the valid values.

Ideally, I'd suggest creating your own wrapper type for this, e.g.

public struct Int25
{
    private readonly int value;

    // Constructor etc, and operators which always make sure the result
    // is within the appropriate range
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文