请问a=a<<8 什么意思呀,原文是:{
// WINCC:TAGNAME_SECTION_START
// syntax: #define TagNameInAction DMTagName
// next TagID : 1
#define Apcstatus "S"
#define Apcxalr "xalr"
// WINCC:TAGNAME_SECTION_END
// WINCC:PICNAME_SECTION_START
// syntax: #define PicNameInAction PictureName
// next PicID : 1
// WINCC:PICNAME_SECTION_END
short int a;
a=GetTagWord(Apcstatus);
a=a<<8;
SetTagWord(Apcxalr,a);
return 0;
}
其中“s" 和"xlar" 是内部变量 无符号16位数。
最佳答案
a<<=n
等价于a=a<<n
a<<n表示a左移n位(二进制)
等价于a乘以2的n次方
a<<=n的含义就是,a等于a乘以2的n次方
提问者对于答案的评价:
谢谢,
原创文章,作者:more0621,如若转载,请注明出处:https://www.zhaoplc.com/plc252135.html