如何在不使用字符串连接的情况下在delphi中执行此操作?
你不能.不支持多行文字.连接是唯一的选择.
但是,您的Delphi代码在运行时执行串联.在编译时这样做要好得多.所以代替:
Result := 'foo'; Result := Result + 'bar';
写
Result := 'foo' + 'bar';