zoukankan      html  css  js  c++  java
  • 随机获取用户定义的字符串

    此类需要使用之前讲到的IntegerWeightRandom类;

    示例:

    给定"a"赋予权重100,"b"的权重为50,则getNextString()时取"a"的概率要更大;


    package org.xiazdong.util;
    
    /*给定字符串集合,设定每个字符串的权重,返回随机字符串*/
    public class StringRandom {
    	private String[] datas;
    	private IntegerWeightRandom random = new IntegerWeightRandom();
    	public StringRandom(String[]datas){
    		this.datas = datas;
    	}
    	public void setStringWeight(int weight,int idx){
    		if(datas.length>idx)
    			random.addWeightNumber(weight, idx);
    	}
    	public String getNextString(){
    		int idx = random.getNextInt();
    		return datas[idx];
    	}
    }


    测试类:


    package test.org.xiazdong.util;
    
    import org.junit.Test;
    
    import org.xiazdong.util.StringRandom;
    
    import junit.framework.TestCase;
    
    public class StringRandomTest extends TestCase {
    
    	@Test
    	public void testGetNextString() {
    		StringRandom random = new StringRandom(new String[] { "a", "b", "c" });
    		random.setStringWeight(10, 0);
    		random.setStringWeight(20, 1);
    		random.setStringWeight(30, 2);
    		for (int i = 0; i < 10; i++)
    			System.out.println(random.getNextString());
    	}
    }
    


  • 相关阅读:
    c语言字符串_续
    c语言中文件的操作
    Linux基础知识
    netstat
    wireshark 过滤规则
    常用cmd命令
    优化过的redis封装类
    二十三岁,新的起点
    计划看的书目
    [转载]爱上一个给予你正能量的人
  • 原文地址:https://www.cnblogs.com/xiazdong/p/3058335.html
Copyright © 2011-2022 走看看