java 和 c# 中右移运算符的不同结果

发布于 2024-12-08 15:35:29 字数 574 浏览 0 评论 0原文

BHere 是代码:

c#

private void button1_Click(object sender, EventArgs e)
{
  int a = -33554432;
  byte b = (byte)(a >> 24);
  MessageBox.Show(b.ToString());
}

java

private void jButton1ActionPerformed(java.awt.event.ActionEvent evt) {
    int a = -33554432;
    byte b = (byte)(a >> 24);
    JOptionPane.showMessageDialog(null, Byte.toString(b));
}

我已经阅读过这个问题,并且我相信有一种相对简单的方法来理解不同的行为,但我需要一些帮助来实现这种理解。请问有人接盘吗?

非常感谢!

编辑:好的,现在使用 Byte.toString()。 c# 的输出 = 254 java = -2

BHere's the code:

c#

private void button1_Click(object sender, EventArgs e)
{
  int a = -33554432;
  byte b = (byte)(a >> 24);
  MessageBox.Show(b.ToString());
}

java

private void jButton1ActionPerformed(java.awt.event.ActionEvent evt) {
    int a = -33554432;
    byte b = (byte)(a >> 24);
    JOptionPane.showMessageDialog(null, Byte.toString(b));
}

I've read around this problem, and I believe there is a relatively simple way of understanding the different behavior, but I need a little help in reaching this understanding. Any takers, please?

Many thanks!

EDIT: ok, now using Byte.toString(). Output for c# = 254 java = -2

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

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

发布评论

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

评论(3

℉絮湮 2024-12-15 15:35:29

Java byte 是有符号的,因此如果数字为负数,>> 将从左侧填充 1 位。

C# byte 是无符号的,因此 >> 运算符填充 0 位。

在 C# 代码中将 byte 更改为 sbyte,或者在 Java 中使用 >>>

Java byte is signed so >> will fill in 1 bits from the left if the number is negative.

C# byte is unsigned so the >> operator is filling in 0 bits.

Either change byte to sbyte in your C# code or use >>> in Java.

烟─花易冷 2024-12-15 15:35:29

Java 中的字节是有符号的值。在这种情况下,您实际上可以只使用:

// Note the triple >
int b = a >>> 24;

或者:

byte b = (byte) (a >> 24);
int c = b & 0xff;

Byte in Java is a signed value. In this case you could actually just use:

// Note the triple >
int b = a >>> 24;

Alternatively:

byte b = (byte) (a >> 24);
int c = b & 0xff;
萌酱 2024-12-15 15:35:29

尝试在Java中使用>>>。这会在不考虑符号位的情况下进行位移位。

Try to use in Java >>>. This does bit-shifting without taking care of the sign-bit.

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