是否有一个Java等同于C#的’checked’关键字?

前端之家收集整理的这篇文章主要介绍了是否有一个Java等同于C#的’checked’关键字?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
是的,这是一段很简单的代码,但我仍然想知道是否有内置的替代品.

这是代码

/**
 * Cast x to int,throw an exception if there's loss of information
 */
public static int safeLongToInt(long x)
{
  int result = (int) x;
  if (result != x)
    throw new RuntimeException("long doesn't fit in an int: " + x);

  return result;
}

C#中的代码是:

int foo;
long bar = ...;
checked
{
  foo = bar;
}

解决方法

(预发布)开源Guava库具有您寻求的方法

Ints.checkedCast(long)

原文链接:https://www.f2er.com/java/128137.html

猜你在找的Java相关文章