Warning: file_get_contents(/data/phpspider/zhask/data//catemap/1/vb.net/14.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Vb.net VBA中的位移位运算符是什么?我分别使用>>和_Vb.net_Vba_Excel - Fatal编程技术网

Vb.net VBA中的位移位运算符是什么?我分别使用>>和

Vb.net VBA中的位移位运算符是什么?我分别使用>>和,vb.net,vba,excel,Vb.net,Vba,Excel,VBA 2013中的位移位运算符是什么?不幸的是,VBA没有按位运算符。您必须使用VB.NET或自己创建类似于此的内容:检查2013年可用的位移位或位移位功能。您是指VBA还是指VB.NET或VB脚本?您的问题需要正确标记!三者不相等!VBA没有位移位运算符。您需要自己编写功能代码。@Cindymister上有一个例子,绝对不是VBScript。 Sub CommandButton21_Click() MsgBox ROTR(1, 2) End Sub Function ROTR(A As

VBA 2013中的位移位运算符是什么?不幸的是,VBA没有按位运算符。您必须使用VB.NET或自己创建类似于此的内容:

检查2013年可用的位移位或位移位功能。

您是指VBA还是指VB.NET或VB脚本?您的问题需要正确标记!三者不相等!VBA没有位移位运算符。您需要自己编写功能代码。@Cindymister上有一个例子,绝对不是VBScript。
Sub CommandButton21_Click()
  MsgBox ROTR(1, 2)
End Sub

Function ROTR(A As Integer, B As Integer) As Integer
  ROTR = A >> B
End Function