是否可以将字符串10与数字10相乘

时间:2019-04-17 05:38:35

标签: java spring spring-el

乘以'10' * 10会得到一些输出值10101010101010101010

有人能证明这一点吗?

ExpressionParser parser = new SpelExpressionParser();
System.out.println(parser.parseExpression("'10' * 10").getValue());

输出:10101010101010101010

1 个答案:

答案 0 :(得分:1)

  

它应该引发一些异常,因为在Java中我们不能将字符串与数字相乘。

SpEL 不是Java ,它具有一些相似之处,但是它是不是Java 。它没有lambda,在许多方面都有不同的语法。

应用于字符串的乘法运算符意味着将字符串连接该次数。

类似于'10' + '10' = '1010''10' * 2 = '1010'

OpMultiply类中的Javadoc:

/**
 * Implements the {@code multiply} operator directly here for certain types
 * of supported operands and otherwise delegates to any registered overloader
 * for types not supported here.
 * <p>Supported operand types:
 * <ul>
 * <li>numbers
 * <li>String and int ('abc' * 2 == 'abcabc')
 * </ul>
 */