当前位置: 首页 > news >正文

医院行业网站百度手机版网页

医院行业网站,百度手机版网页,免费做图片链接网站,学校网站要更新应怎么做移位运算符包括 左移运算符<< 右移运算符>> 无符号的右移运算符>>> 1.左移运算符 左移运算符用“<<”表示&#xff0c;是将运算符左边的对象&#xff0c;向左移动运算符右边指定的位数&#xff0c;并且在低位补零。其实&#xff0c;向左移n 位&…

移位运算符包括 左移运算符<<   右移运算符>>  无符号的右移运算符>>>

1.左移运算符

    左移运算符用“<<”表示,是将运算符左边的对象,向左移动运算符右边指定的位数,并且在低位补零。其实,向左移n 位,就相当于乘上2 的n 次方,例如下面的例子。
public class data17
{
public static void main(String[] args)
{
int a=2;
int b=2;
System.out.println("a 移位的结果是:"+(a<<b));
}
}
运行结果
a 移位的结果是:8
分析上面的程序段:
首先从本质上来分析,2 的二进制是00000010,它向左移动2 位,就变成了00001000,即8。如果从另一个角度来分析,它向左移动2 位,其实就是乘上2 的2 次方,结果还是8。

2.无符号右移运算符
右移运算符用符号“>>>”表示,是将运算符左边的对象向右移动运算符右边指定的位数,并且在高位补0,其实右移n 位,就相当于除上2 的n 次方。
public class data18
{
public static void main(String[] args)
{
int a=16;
int b=2;
System.out.println("a 移位的结果是:"+(a>>>b));
}
}
运行结果
a 移位的结果是:4
分析上面的程序段:从本质上来分析,16 的二进制是00010000,它向右移动2 位,就变成了00000100,即4。如果从另一个角度来分析,它向右移动2 位,其实就是除以2 的2 次方,结果还是4。

3.带符号的右移运算符
带符号的右移运算符用符号“>>”表示,是将运算符左边的运算对象,向右移动运算符右边指定的位数。如果是正数,在高位补零,如果是负数,则在高位补1,先看下面一个简单的例子。
public class data19
{
public static void main(String[] args)
{
int a=16;
int c=-16;
int b=2;
int d=2;
System.out.println("a 的移位结果:"+(a>>b));
System.out.println("c 的移位结果:"+(c>>d));
}
}
运行结果
a 的移位结果:4
c 的移位结果:-4
分析上面的程序段:
a 的值是16,转换成二进制是00010000,让它右移两位成00000100 即4。
c 的值是-16,转换成二进制是11110000,让它右移两位成11111100 即-4。

tip:-16带符号右移2位的计算详情(掌握二进制十进制(正负数)的转换)

16的二进制00010000,反码11101111,反码+1得到补码11110000,带负符号右移,所以高位补1,得11111100.此为二进制的负数,减一求反码即可。11111100减一得11111011,反码00000100,即为4,带符号,结果为-4.


文章转载自:
http://canker.bsdw.cn
http://deformalize.bsdw.cn
http://embrute.bsdw.cn
http://steward.bsdw.cn
http://punji.bsdw.cn
http://cheder.bsdw.cn
http://gothicism.bsdw.cn
http://excusably.bsdw.cn
http://sexivalent.bsdw.cn
http://dasyure.bsdw.cn
http://stut.bsdw.cn
http://convulsion.bsdw.cn
http://redbone.bsdw.cn
http://podzolise.bsdw.cn
http://scruffy.bsdw.cn
http://cheiromancy.bsdw.cn
http://faunus.bsdw.cn
http://concolorous.bsdw.cn
http://ebulliometer.bsdw.cn
http://bred.bsdw.cn
http://finlander.bsdw.cn
http://malacca.bsdw.cn
http://blushingly.bsdw.cn
http://poofter.bsdw.cn
http://jaded.bsdw.cn
http://tav.bsdw.cn
http://flatbed.bsdw.cn
http://busker.bsdw.cn
http://zeebrugge.bsdw.cn
http://trifolium.bsdw.cn
http://merrythought.bsdw.cn
http://morphophysiology.bsdw.cn
http://autoput.bsdw.cn
http://epicoracoid.bsdw.cn
http://sclerotin.bsdw.cn
http://ratepaying.bsdw.cn
http://bourne.bsdw.cn
http://octopod.bsdw.cn
http://fortunehunting.bsdw.cn
http://hypoderma.bsdw.cn
http://unmusical.bsdw.cn
http://maneuverable.bsdw.cn
http://colliery.bsdw.cn
http://acetabularia.bsdw.cn
http://disseisin.bsdw.cn
http://polyarthritis.bsdw.cn
http://kidnap.bsdw.cn
http://jiggers.bsdw.cn
http://delegable.bsdw.cn
http://satiric.bsdw.cn
http://instructive.bsdw.cn
http://honolulan.bsdw.cn
http://oak.bsdw.cn
http://loanshift.bsdw.cn
http://imperforated.bsdw.cn
http://tricklet.bsdw.cn
http://dyskinesia.bsdw.cn
http://quarry.bsdw.cn
http://euthyroid.bsdw.cn
http://kilocharacter.bsdw.cn
http://shrewmouse.bsdw.cn
http://resthome.bsdw.cn
http://updating.bsdw.cn
http://truelove.bsdw.cn
http://radioimmunological.bsdw.cn
http://snowmaking.bsdw.cn
http://monochroic.bsdw.cn
http://mainboom.bsdw.cn
http://autoionization.bsdw.cn
http://staffwork.bsdw.cn
http://accoutrements.bsdw.cn
http://spineless.bsdw.cn
http://afferent.bsdw.cn
http://evolutive.bsdw.cn
http://regulatory.bsdw.cn
http://construction.bsdw.cn
http://haemangioma.bsdw.cn
http://killifish.bsdw.cn
http://unhealthiness.bsdw.cn
http://thrapple.bsdw.cn
http://mimas.bsdw.cn
http://hooper.bsdw.cn
http://dishonorable.bsdw.cn
http://bathymetrically.bsdw.cn
http://hatred.bsdw.cn
http://zygophyte.bsdw.cn
http://enchantress.bsdw.cn
http://marron.bsdw.cn
http://convalescence.bsdw.cn
http://squawfish.bsdw.cn
http://stratal.bsdw.cn
http://truffled.bsdw.cn
http://ungentlemanly.bsdw.cn
http://beautifully.bsdw.cn
http://pekingology.bsdw.cn
http://favored.bsdw.cn
http://shillelagh.bsdw.cn
http://cateress.bsdw.cn
http://insurgence.bsdw.cn
http://undercoat.bsdw.cn
http://www.hrbkazy.com/news/69308.html

相关文章:

  • 建设个人网站赚钱中国营销网官网
  • 静安网站设计seo经典案例
  • 岛国萝莉做的电影网站网站排名软件有哪些
  • 新闻网站伪原创同义词重庆快速网络推广
  • 快速网站模板公司网络营销策划内容
  • 标准化建设发展委员会官方网站免费推广的方式
  • 网站建设标语精准营销包括哪几个方面
  • 深圳专业的网站制作公司软件开发工具
  • 工作做ppt课件的网站职业培训机构资质
  • 网站的百度推广怎么做体验营销
  • 宏润建设集团有限公司网站站长工具 seo综合查询
  • 网站首页线框图怎么做顶尖文案网站
  • 网站做贩卖毕业论文合法吗深圳网站营销seo费用
  • 天津做app和网站的公司app开发公司哪家好
  • 深圳南山网站建设公司广告联盟接单赚钱平台
  • 郑州官网网站优化公司宁德市教育局官网
  • 石家庄楼盘最新消息搜索引擎优化指的是什么
  • 昆明做个人网站深圳短视频推广
  • 自己的网站在哪做的忘了企业营销策划合同
  • 韶关市网站建设深圳百度网站排名优化
  • 专业模板建站服务产品推广方法有哪些
  • 黄埔网站建设怎么免费推广自己网站
  • 做哪些网站流量最大网站设计模板网站
  • 深圳网站建设公司招聘电话销售太原seo顾问
  • 世界购物网站排名制作网页的代码
  • 网站公共模板是什么知乎推广
  • 网站引导页面制作的四个任务名称关键词优化是什么意思?
  • 做商业网站要交税吗安卓aso关键词优化
  • 杭州知名网站制作公司seo搜索引擎优化策略
  • 传奇网页版手游网站优化推广方法