上次我们讲到了集合。说到集合,那往往少不了循环。今天我们说下什么是并行循环 Parallel.For,Paraller.Foreach (System.Threading.Tasks) 相信大家对此都不陌生。 long sum = 0; Parallel.For(0, MaxValue, (i) = ...
分类:
其他好文 时间:
2020-01-12 22:06:28
阅读次数:
123
/// /// 转换成时间 00:00:00/// /// /// public string time(long duration){ TimeSpan t = new TimeSpan(0, 0, Convert.ToInt32(duration)); //string str = "00:00... ...
分类:
其他好文 时间:
2020-01-11 18:26:41
阅读次数:
272
一、定义: 观察者模式(Observer)又叫做发布 订阅模式(Publish/Subscribe),定义了一种一对多的依赖模式,让多个观察者对象同时监听某一个主题对象,这个主题对象在状态发生变化时,会通知所有观察者对象,使他们能够自动更新自己。 二、示例代码: 三、利用委托类实现 上述例子的问题在 ...
分类:
其他好文 时间:
2020-01-06 19:34:46
阅读次数:
62
package com.zy; import java.io.IOException; import org.apache.commons.lang.time.StopWatch; import org.apache.hadoop.conf.Configuration; import org.apa ...
分类:
编程语言 时间:
2020-01-01 11:46:04
阅读次数:
94
我的数据库 名字叫dic.db 和程序放在一起CREATE TABLE [dic]( [ID] INTEGER PRIMARY KEY AUTOINCREMENT UNIQUE ON CONFLICT REPLACE, [单词] TEXT UNIQUE ON CONFLICT REPLACE, [英... ...
分类:
数据库 时间:
2019-12-27 23:26:57
阅读次数:
145
package com.bgs360.configuration; import org.springframework.context.EnvironmentAware; import org.springframework.context.annotation.Bean; import org. ...
分类:
编程语言 时间:
2019-12-07 10:43:09
阅读次数:
179
I had validated in .net 4.8 NewtonSoft.Json's speed rank 1st,System.Text.Json.JsonSerializer.Serialize 2nd,and BinaryFormatter 3rd. ...
分类:
Web程序 时间:
2019-11-23 19:56:26
阅读次数:
66
第一种 System.DateTime 第二种用Stopwatch类(System.Diagnostics) 转自:https://www.cnblogs.com/I-am-Betty/p/10489787.html ...
1234567891011121314151617181920212223242526272829303132333435363738394041424344public ConfigurableApplicationContext (String... args) { StopWatch stop... ...
分类:
编程语言 时间:
2019-09-30 12:47:17
阅读次数:
89
导出Excel是.NET的常见需求,开源社区、市场上,都提供了不少各式各样的Excel操作相关包。本文,我将使用NPOI、EPPlus、OpenXML、Aspose.Cells四个市面上常见的库,各完成一个导出Excel示例。然后对其代码风格和性能做一个横向比较。最后我将说出我自己的感想。 ...
分类:
Web程序 时间:
2019-08-26 09:29:13
阅读次数:
313