首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 开发语言 > VB >

二 ^ Index是什么意思

2013-03-13 
2 ^ Index是什么意思Private Sub Command1_MouseUp(Index As Integer, Button As Integer, Shift As Integ

2 ^ Index是什么意思
Private Sub Command1_MouseUp(Index As Integer, Button As Integer, Shift As Integer, X As Single, Y As Single)   
 If Option2(Index).value Then                    '判断当前选择的模式是否为JOG模式        Rtn = GT_Stop(2 ^ Index, 0)                 '按位平滑停止当前的轴   
 End If
End Sub
这是固高板卡的一个函数调用,我想知道2 ^ Index是什么意思。听别人说好像和什么二进制有关。没听懂。。。。
有没有哪位大神帮忙解释一下二 ^ Index是什么意思
[解决办法]
2^index的意思就是2的N次方,依据你所提供的资料和你的表达,我的理解:

比如,你要停止第三位,那就是:Rtn = GT_Stop(2 ^ 3, 0),2^3=8,换成二进制,也就是:0001000

热点排行