本文介绍了VBA:&和+的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

两者之间有什么区别

string1 + string2

string1 & string2

它们等效吗?为什么会有两个不同的符号执行相同的操作?

Are they equivalent? Why have two different symbols that do the same thing?

推荐答案

只要操作数是字符串,表达式是相同的;如果不是,则+可能会添加它们,具体取决于类型转换. &保证除了字符串连接外不会得到任何东西,并且会尽可能将操作数转换为字符串.

The expressions are the same as long as the operands are strings; if not, + might add them instead depending on type conversions. & guarantees you won't get anything except a string concatenation, and will convert operands to strings if possible to do so.

有一个有关 Visual Basic中的串联操作的MSDN条目对此进行了解释:

There's an MSDN entry about Concatenation operations in Visual Basic that explains it:

这篇关于VBA:&和+的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-30 20:32