码迷,mamicode.com
首页 >  
搜索关键字:region    ( 2749个结果
F - Oil Deposits 【BFS】
The GeoSurvComp geologic survey company is responsible for detecting underground oil deposits. GeoSurvComp works with one large rectangular region of ...
分类:其他好文   时间:2017-08-21 20:38:45    阅读次数:143
三代测序组拼接组装工具Falcon
基因组装配工具Falcon工作流程 1 Falcon简介Falcon (Fast Alignment and CONsensus),是由PacBio(太平洋生物科技公司)新开发的二倍体基因组从头拼接组装工具,由HGAP(Hierarchical Genome Assembly Process)扩展而 ...
分类:其他好文   时间:2017-08-21 17:49:24    阅读次数:1854
oracle 分析函数5
RATIO_TO_REPORT -- 列出上一年度每个月的销售总额、年底销售额以及每个月的销售额占全年总销售额的比例 -- 方法①: select all_sales.*, 100 * round(cust_sales / region_sales, 2) || '%' Percent from (... ...
分类:数据库   时间:2017-08-20 19:59:16    阅读次数:198
c#多线程
#region 同步、异步 static void Calculator(string name) { //throw (new Exception("Test")); Console.WriteLine("Calculate Start,Name:" + name + ",Thread Id:" ... ...
分类:编程语言   时间:2017-08-20 18:40:03    阅读次数:173
C#委托和事件
#region 委托、事件 static void ChineseGreeting(string name) { Console.WriteLine("早上好," + name); } static void EnglishGreeting(string name) { ... ...
分类:Windows程序   时间:2017-08-20 18:38:26    阅读次数:150
C# Async Await
#region Async、Await static void Async() { Async1(); Thread.Sleep(1200); Console.WriteLine("Main Stop,Thread Id:" + Thread.CurrentThread.Man... ...
分类:Windows程序   时间:2017-08-20 18:34:34    阅读次数:160
C#委托调用(同步调用,异步调用,异步回调)
#region 委托回调 static void delegateTest() { Console.WriteLine("同步调用"); SubDelegate subDel = Sub; var result = subDel.Invoke(3, 4); ... ...
分类:Windows程序   时间:2017-08-20 18:29:00    阅读次数:166
C# 单例模式
#region Singleton class Singleton { private static Singleton singleton; private static object lockObj = new object(); private Singleton() ... ...
分类:Windows程序   时间:2017-08-20 18:24:59    阅读次数:190
基本排序算法(C#)
#region Algorithm static void SelectionSorter()//选择排序 { int[] list = new int[] { 9, 5, 6, 89, 2, 0, 12, 895, 1, 6 }; for (int i = 0; i = x) ... ...
分类:编程语言   时间:2017-08-20 18:20:27    阅读次数:150
mybatis中如果存在参数不再实体中的是如何处理
...
分类:其他好文   时间:2017-08-19 22:17:49    阅读次数:117
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!