C#,byte与short之间的装换问题。。。
1.shorti=55296;2.byteb=newbyte();b=216;shorti=(short)(byte<<8);为什么第一种写法会报错,而第二种写法,却不会...
1.short i = 55296;2. byte b = new byte();b= 216;short i = (short)(byte << 8);为什么第一种写法会报错,而第二种写法,却不会。
展开
2个回答
2013-04-23
展开全部
做个测试,希望有所帮助。代码using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;namespace WindowsFormsApplication1
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
} private void button1_Click(object sender, EventArgs e)
{
//short的范围:-32768 到 32767
//short i1 = 55296; //报错,因为超出了表示域 byte b = new byte();
b = 216;
//这样是移位后截取short域的信息
short i2 = (short)(b << 8);
long i3 = (long)(b << 8); MessageBox.Show(i2.ToString(), "i2");
MessageBox.Show(i3.ToString(), "i3"); } }
}
结果 按照二进制数据位做了处理
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;namespace WindowsFormsApplication1
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
} private void button1_Click(object sender, EventArgs e)
{
//short的范围:-32768 到 32767
//short i1 = 55296; //报错,因为超出了表示域 byte b = new byte();
b = 216;
//这样是移位后截取short域的信息
short i2 = (short)(b << 8);
long i3 = (long)(b << 8); MessageBox.Show(i2.ToString(), "i2");
MessageBox.Show(i3.ToString(), "i3"); } }
}
结果 按照二进制数据位做了处理
2013-04-23
展开全部
short i = (short)(byte << 8); 就是错的 C#也不允许啊
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询