日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當(dāng)前位置: 首頁(yè) > 编程资源 > 编程问答 >内容正文

编程问答

【SpEL】随机数

發(fā)布時(shí)間:2024/9/19 编程问答 29 豆豆
生活随笔 收集整理的這篇文章主要介紹了 【SpEL】随机数 小編覺得挺不錯(cuò)的,現(xiàn)在分享給大家,幫大家做個(gè)參考.

前言

  • Spring Expression Language (SpEL)
  • Spring Expression Version : 5.1.3.RELEASE
  • Maven 3.6.3
  • Eclipse Version: 2019-12 (4.14.0)

Eg

import org.junit.Assert; import org.springframework.expression.ExpressionParser; import org.springframework.expression.spel.standard.SpelExpressionParser;public class Test {public static void main(String[] args) {String exp = "T(java.lang.Math).random() * 100";ExpressionParser parser = new SpelExpressionParser();int randomNumber = parser.parseExpression(exp).getValue(Integer.class);Assert.assertTrue(randomNumber>=0 && randomNumber<100);} }

測(cè)試隨機(jī)數(shù)

import org.junit.Assert; import org.springframework.expression.ExpressionParser; import org.springframework.expression.spel.standard.SpelExpressionParser;public class Test {public static void main(String[] args) {String exp = "T(java.lang.Math).random() * 100";ExpressionParser parser = new SpelExpressionParser();for (int i=0;i<10000;i++) {int randomNumber = parser.parseExpression(exp).getValue(Integer.class);Assert.assertTrue(randomNumber>=0 && randomNumber<100);} } }

轉(zhuǎn)成 int

import org.junit.Assert; import org.springframework.expression.ExpressionParser; import org.springframework.expression.spel.standard.SpelExpressionParser;public class Test {public static void main(String[] args) {String exp = "T(Double).valueOf(T(java.lang.Math).random() * 100)";ExpressionParser parser = new SpelExpressionParser();int randomNumber = parser.parseExpression(exp).getValue(Integer.class);Assert.assertTrue(randomNumber>=0 && randomNumber<100);} }

轉(zhuǎn)成 int 的另外一個(gè)方法

import org.junit.Assert; import org.springframework.expression.ExpressionParser; import org.springframework.expression.spel.standard.SpelExpressionParser;public class Test {public static void main(String[] args) {String exp = "new java.util.Random().nextInt(100)";ExpressionParser parser = new SpelExpressionParser();int randomNumber = parser.parseExpression(exp).getValue(Integer.class);Assert.assertTrue(randomNumber>=0 && randomNumber<100);} }

應(yīng)用

將點(diǎn)擊量隨機(jī)翻2倍或3倍。

import org.junit.Assert; import org.springframework.expression.EvaluationContext; import org.springframework.expression.ExpressionParser; import org.springframework.expression.spel.standard.SpelExpressionParser; import org.springframework.expression.spel.support.StandardEvaluationContext;public class Test {public static void main(String[] args) {String exp = "#clickNum * (new java.util.Random().nextInt(2)+2)";int clickNum = 33;EvaluationContext context = new StandardEvaluationContext();context.setVariable("clickNum", clickNum); ExpressionParser parser = new SpelExpressionParser();int newClickNum = parser.parseExpression(exp).getValue(context, Integer.class);Assert.assertTrue(66==newClickNum || 99==newClickNum);} }

參考

https://docs.spring.io/spring/docs/5.0.6.RELEASE/spring-framework-reference/core.html#expressions-types

總結(jié)

以上是生活随笔為你收集整理的【SpEL】随机数的全部?jī)?nèi)容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網(wǎng)站內(nèi)容還不錯(cuò),歡迎將生活随笔推薦給好友。