若是你想查看更多 Jmeter 经常使用函数能够在这篇文章找找哦html
https://www.cnblogs.com/poloyy/p/13291704.htmdom
计算两个或多个整数值的和函数
${__intSum(1,2,3)}
字段 | 含义 | 是否必传 |
---|---|---|
First number | 第一个要添加的整数spa |
yes |
Second number | 第二个要添加的整数线程 |
yes |
nth number | 后续继续要添加的整数code |
no |
Variable name | 引用返回值的变量名htm |
no |
${__intSum(1,2,)}
${__intSum(1,2,3)}
由于第三个值是纯数字,因此不会被识别为变量名,只有非纯数字才会被识别哦 blog
${__intSum(1,2,3,4,${__Random(100,999)},sum)}
最后是 sum,是非纯数字,因此是变量名ci