zoukankan      html  css  js  c++  java
  • JMeter使随机数返回浮点数

    一、生成随机数

    如果您需要有限的随机值,只需使用20.0之类的静态前缀并调用__Random()函数来生成后缀,如:

    "latitude": 42.0${__Random(6,8,)},
    "longitude": 20.0${__Random(2,4,)},
    

    如果您正在寻找一种生成完全随机的纬度和经度值的方法,我建议切换到__javaScript()函数,如:

    "latitude": ${__javaScript((Math.random() * (180) - 90).toFixed(2) * 1,)},
    "longitude": ${__javaScript((Math.random() * (360) - 180).toFixed(2) * 1,)},


    ${__javaScript((Math.random() * (100)).toFixed(2) * 1,)}
    • Math.random() 生成 0 ~ 1 的小数
    • Math.random() * (100) 生成 0 ~ 100 的浮点数
    • toFixed(2) 将生成的浮点数保留 2 位小数
    ${__javaScript((Math.random() * (100)).toFixed(2) * 1+100,)}

     100 ~ 200 内的带两位小数的浮点数

    二、打印结果

    System.out.println(${__javaScript((Math.random() * (100) ).toFixed(4) * 1+100,)});

     
  • 相关阅读:
    tp 30秒超时
    zend studio git 提示错误
    php连接数据库
    php点击排序
    表情符号解析
    js Object.assign 方法
    Web界面简繁体转换
    H5骨架屏实战
    JavaScript heap out of memory问题
    Vue bus插件封装
  • 原文地址:https://www.cnblogs.com/uestc2007/p/15185836.html
Copyright © 2011-2022 走看看