码迷,mamicode.com
首页 >  
搜索关键字:row    ( 12323个结果
unity中使用excel导入和通过excel打印
支持office和wps using ExcelDataReader; using OfficeOpenXml; using System; using System.Collections.Generic; using System.Data; using System.Diagnostics; ...
分类:编程语言   时间:2021-04-29 11:38:52    阅读次数:0
List根据指定字段进行分组C#
var sql = @"update [TABLE] WITH (ROWLOCK) SET 匹配方式 = '{0}' where ID in({1})"; //lissqls 是你要分组的泛型集合 var GroupList = lissqls.GroupBy(x => x.MatchType).S ...
分类:Windows程序   时间:2021-04-28 12:20:20    阅读次数:0
一些简单的算法与数据结构
一些简单的算法与数据结构 稀疏数组 int chessArr1[][] = new int[11][11];//11*11的数组 int sum = 0; chessArr1[1][2] = 1;//设置两个值 chessArr1[2][3] = 2; //打印原数组 for(int[] row : ...
分类:编程语言   时间:2021-04-28 11:46:26    阅读次数:0
C++(异常)
C++(异常) int myDevide(int a, int b) { if (b == 0) { //throw - 1;//抛出int类型异常 throw 3.13; } return a / b; } void test01() { int a = 10; int b = 0; try { ...
分类:编程语言   时间:2021-04-27 14:40:23    阅读次数:0
【Excel】数据的排列
在程序设计中的两个列表组合很简单,只需双层循环就可以。 但在excel中的排列需要写函数,整体来说需要: G列:=IF(ROW()>COUNTA(B:B),INDEX(A:A,INT((ROW()-1)/COUNTA(B:B)+1)),$A$1) H列:=IF(MOD(ROW(),COUNTA(B: ...
分类:其他好文   时间:2021-04-27 14:35:20    阅读次数:0
ASP.NET Core中使用NLog记录日志
1:添加Nlog的组件 直接在NuGet里面搜索NLog.Web.AspNetCore 2:然后就是配置服务 public class Program { public static void Main(string[] args) { CreateHostBuilder(args).Build() ...
分类:Web程序   时间:2021-04-27 14:26:50    阅读次数:0
满射(onto) 和 单射(one-to-one)
满射 A mapping \(T: \mathbb{R}^{n} \rightarrow \mathbb{R}^{m}\) is said to be onto \(\mathbb{R}^{m}\) if each \(\mathbf{b}\) in \(\mathbb{R}^{m}\) is th ...
分类:其他好文   时间:2021-04-24 13:56:43    阅读次数:0
JAVAEE_Servlet_09_Adapter适配器GenericServlet
适配器 GenericServlet * 适配器 (Adapter) - 适配器的作用? 1.我们目前所有的Servlet类都直接实现了javax.servlet.Servlet接口,但是该接口中有些方法是我们暂时不需要的,我们可能只需要编写service方法,直接实现Servlet接口的话,显得代 ...
分类:编程语言   时间:2021-04-22 15:19:02    阅读次数:0
leetcode765
1.记录索引交换 class Solution { public: int minSwapsCouples(vector<int>& row) { int len=row.size(); vector<int> idx(len,-1); int ret=0; for(int i=0;i<len;++ ...
分类:其他好文   时间:2021-04-22 15:12:46    阅读次数:0
CountDownLatch、CyclicBarrier、Semaphore使用例子
都是JUC并发包下的类 CountDownLatch:倒计时,countDown每次减少,await控制达到倒计时要求值 //下自习离开案例,班长必须最后走 public class CountDownLatchDemo { public static void main(String[] args ...
分类:其他好文   时间:2021-04-21 12:21:06    阅读次数:0
12323条   上一页 1 ... 9 10 11 12 13 ... 1233 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!