- 1、本文档共3页,可阅读全部内容。
- 2、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
- 5、该文档为VIP文档,如果想要下载,成为VIP会员后,下载免费。
- 6、成为VIP后,下载本文档将扣除1次下载权益。下载后,不支持退款、换文档。如有疑问请联系我们。
- 7、成为VIP后,您将拥有八大权益,权益包括:VIP文档下载权益、阅读免打扰、文档格式转换、高级专利检索、专属身份标志、高级客服、多端互通、版权登记。
- 8、VIP文档为合作方或网友上传,每下载1次, 网站将根据用户上传文档的质量评分、类型等,对文档贡献者给予高额补贴、流量扶持。如果你也想贡献VIP文档。上传文档
查看更多
Random的使用
Random 扩展
在 .Net 中,一般使用 Random 类来生成随机数,它提供了以下几个基本方法供使用:
名称 说明 ?Next() 返回非负随机数。 ?Next(Int32) 返回一个小于所指定最大值的非负随机数。 ?Next(Int32, Int32) 返回一个指定范围内的随机数。 ?NextBytes 用随机数填充指定字节数组的元素。 ?NextDouble 返回一个介于 0.0 和 1.0 之间的随机数。 如果想生成一些特殊的随机数,如枚举、日期等,则要再进行几步处理。
Random常用扩展
布尔:NextBool
随机返回 true 或 false:
public static bool NextBool(this Random random)
{
return random.NextDouble() 0.5;
}
调用示例:
bool b = random.NextBool();
枚举: NextEnum
public static T NextEnumT(this Random random)
where T: struct
{
Type type = typeof(T);
if (type.IsEnum == false) throw new InvalidOperationException();
var array = Enum.GetValues(type);
var index = random.Next(array.GetLowerBound(0), array.GetUpperBound(0) + 1);
return (T)array.GetValue(index);
}
调用示例:
enum Shape { Ellipse, Rectangle, Triangle }
Shape shape = random.NextEnumShape();
NextBytes
系统提供的 NextBytes 方法,要事先生成一个 byte 数组,不太方便。扩展一下,输入长度返回数组:
public static byte[] NextBytes(this Random random, int length)
{
var data = new byte[length];
random.NextBytes(data);
return data;
}
调用示例:
byte[] data = random.NextBytes(128);
NextUInt16、NextInt16、NextFloat…
有了 NextBytes 扩展,配合 BitConverter 类,我们可以扩展出很多:
public static UInt16 NextUInt16(this Random random)
{
return BitConverter.ToUInt16(random.NextBytes(2), 0);
}
public static Int16 NextInt16(this Random random)
{
return BitConverter.ToInt16(random.NextBytes(2), 0);
}
public static float NextFloat(this Random random)
{
return BitConverter.ToSingle(random.NextBytes(4), 0);
}
时间日期:NextDateTime
public static DateTime NextDateTime(this Random random, DateTime minValue, DateTime maxValue)
{
var ticks = minValue.Ticks + (long)((maxValue.Ticks - minValue.Ticks) * random.NextDouble());
return new DateTime(ticks);
}
public static DateTime NextDateTime(this Random random)
{
return NextDateTime(random, DateTime.MinValue, DateTime.MaxValue);
}
调用示例:
DateTime d = random.NextDateTime(new DateTime(2000, 1, 1), new DateTime(2010, 12, 31));
Random 特定扩展
开发中,面对
您可能关注的文档
- PQRASME要求填写的焊接工艺评定报告.doc
- Practical Automatic Determination of Causal Relationships in Software Execution Traces.pdf
- Prediction of Physical, Color, and Sensory Characteristics of Broiler Breasts by VisibleNea.pdf
- Precision Spectroscopy of Pionic Atoms From Pion Mass Evaluation to Tests of Chiral Perturb.pdf
- Predictive Evaluation of Econometric Forecasting Models in Commodity Futures Markets.pdf
- Predicting the Performance of Randomized Parallel Search An Application to Robot Motion Pla.pdf
- PRELIMINARY VERSION A Design Diversity Metric and Analysis of Redundant Systems.pdf
- Present and NearFuture Reflected Light Searches for CloseIn Planets.pdf
- prepared for a special issue of abour Economics,.pdf
- Present and Future Electroweak Precision Measurements and the Indirect Determination of the.pdf
- 农业教育中的社会实践模式论文.docx
- 2025年英语翻译资格考试笔译模拟试卷听力提升.docx
- 2025年一建《机电工程管理与实务》施工组织设计重点题库精编试题.docx
- 2025年小学英语毕业考试模拟卷:英语阅读理解技巧深度解析与应用.docx
- 2025年茶艺师职业技能鉴定模拟试题实战解析.docx
- 二零二五版个人住房借款合同样本.docx
- 白露节气PPT模板 (5).pptx
- 2025年宠物训导师职业能力测试卷:宠物训练心理辅导策略案例分析篇试题.docx
- 2025年消防执业资格考试题库(基础知识精选题)实战演练及解析.docx
- 2025年企业培训师职业资格考试真题卷:最新政策解读与备考策略.docx
文档评论(0)