groovy怎么将字符拼接生成接送、
时间: 2024-01-14 12:02:42 浏览: 175
IDEA groovy生成实体解决乱码问题
在Groovy中,你可以使用字符串插值或者字符串连接来拼接生成字符串。下面是两种方法的示例:
1. 字符串插值:
```
def name = "John"
def age = 30
def message = "${name} is ${age} years old."
println(message)
```
输出结果为:`John is 30 years old.`
在字符串插值中,使用`${}`来引用变量或表达式,Groovy会自动将其替换为对应的值。
2. 字符串连接:
```
def firstName = "John"
def lastName = "Doe"
def fullName = firstName + " " + lastName
println(fullName)
```
输出结果为:`John Doe`
在字符串连接中,使用`+`符号来连接两个字符串,注意需要使用空格或者其他分隔符来分隔不同的字符串。
阅读全文