本文介绍了& = b的含义是什么.请举一个例子来解释?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

&= b的含义是什么.请使用示例进行说明吗?

what does a &= b meant for. please explain with an example?

推荐答案



a = a & b


即您的a和b的String值是一致的,结果将存储在变量a中.请参见以下示例:


i.e your String value of a and b are concanitate and result will be stored in Variable a.See the following Example :

Dim i As Integer 
i = i + 1


上面的代码可以编写如下:


The above code you can write as follows :

Dim i As Integer
i += 1


两种代码都给出相同的结果.希望对您有帮助. :)


Both code gives same Result.I hope it helps you. :)


这篇关于& = b的含义是什么.请举一个例子来解释?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-16 08:20