比较原始类型

发布于 12-12 05:02 字数 511 浏览 0 评论 0原文

我被问到

根据下面的 a、b 和 c 的定义,选择编译成功且计算结果为 true 的表达式。

int a = 1;
字符 b = 'a';
布尔值 c = false;

所以我用了一个简单的

if (expression)
{System.out.println("True");}
else
{System.out.println("False");}

这样是吗?

c==a         //false
!c || a      //false
b >= a       //true
c = a        //false
a - b - 96   //false
a + b > 0    //true
c = true     //true
a < b        //true

这看起来还好吗?

I have been asked

Given the definitions of a, b and c below, select the expressions that compile successfully and evaluate to true.

int a = 1;
char b = 'a';
boolean c = false;

So I used a simple

if (expression)
{System.out.println("True");}
else
{System.out.println("False");}

Is this right?

c==a         //false
!c || a      //false
b >= a       //true
c = a        //false
a - b - 96   //false
a + b > 0    //true
c = true     //true
a < b        //true

Does this look ok?

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

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

发布评论

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

评论(2

携君以终年2024-12-19 05:02:11
  • c==a:无法编译,int 无法与 boolean 进行比较。
  • <代码>!c || a:无法编译,boolean ||不允许使用 int
  • b >= a:编译,计算结果为 true
  • c = a:不编译,无法将 int 值分配给 boolean
  • a - b - 96:编译,计算结果为 -192
  • a + b > ; 0:编译,计算结果为 true
  • c = true:编译,计算结果为 true (并赋值 true代码> 到 c)
  • a b:编译,计算结果为true
  • c==a: doesn't compile, int can't be compared to boolean.
  • !c || a: doesn't compile, boolean || int isn't allowed
  • b >= a: compiles, evaluates to true
  • c = a: doesn't compile, can't assign an int value to a boolean
  • a - b - 96: compiles, evaluates to -192
  • a + b > 0: compiles, evaluates to true
  • c = true: compiles, evaluates to true (and assigns true to c)
  • a < b: compiles, evaluates to true
家住魔仙堡2024-12-19 05:02:11

如果表达式无法编译,您认为输出

if (expression) 
   {System.out.println("True");} 
else 
   {System.out.println("False");}

会是什么?

对于那些能够编译的人来说,是的,你是对的。

If an expression doesn't compile, what do you think the output of

if (expression) 
   {System.out.println("True");} 
else 
   {System.out.println("False");}

would be?

For those that do compile, then yes, you're right.

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