码迷,mamicode.com
首页 >  
搜索关键字:otherwise    ( 526个结果
Boost Log
最简单例子: 添加过滤: ...
分类:其他好文   时间:2018-06-04 11:51:02    阅读次数:319
matlab程序设计
一、M文件 1、脚本文件 (1)英文字母开头命名 (2)所产生的所有变量驻留在base workspace,只要不用clear,就只有关闭MATLAB,才会被删除 2、函数文件 (1)function (2)函数调用完毕,function workspace删除 二、MATLAB程序流控制与调试 1 ...
分类:其他好文   时间:2018-05-31 02:25:23    阅读次数:725
Java中的Unsafe类
1.Unsafe类介绍 Unsafe类是在sun.misc包下,不属于Java标准。但是很多Java的基础类库,包括一些被广泛使用的高性能开发库都是基于Unsafe类开发的,比如Netty、Hadoop、Kafka等。 使用Unsafe可用来直接访问系统内存资源并进行自主管理,Unsafe类在提升J ...
分类:编程语言   时间:2018-05-23 02:10:11    阅读次数:217
LeetCode - LRU Cache
此题的思路是运用hashmap和double linked nodes The hash makes the time of get() to be O(1). The list of double linked nodes make the nodes adding/removal operati ...
分类:系统相关   时间:2018-05-21 12:44:53    阅读次数:219
What is an ISAPI Extension?
https://www.codeproject.com/Articles/1432/What-is-an-ISAPI-Extension Introduction Unless you have been a caveman, you have seen a number of web sites ...
分类:Windows程序   时间:2018-05-19 13:59:45    阅读次数:229
CodeForces - 983B XOR-pyramid
设f[l,r]为区间[l,r]的f值,那么可以很容易的发现f[l,r] = f[l+1,r] ^ f[l,r-1] (l<r) or a[l] (l==r),这个在纸上画一画就发现了。 于是就成了一个SB题了2333 Discription For an array bb of length mm  ...
分类:其他好文   时间:2018-05-18 22:13:16    阅读次数:156
jmeter测试报告优化
1.下载jmeter.results.shanhe.me.xsl 将该文件拷贝到jmeter\extras目录下 2.修改jmeter.results.shanhe.me.xsl 这里直接拷贝 jmeter-results-detail-report_21.xsl 的部分代码 3.修改jmeter. ...
分类:其他好文   时间:2018-05-17 11:57:38    阅读次数:156
leetcode-747-Largest Number At Least Twice of Others(求vector的最大值和次大值)
题目描述: In a given integer array nums, there is always exactly one largest element. Find whether the largest element in the array is at least twice as m ...
分类:其他好文   时间:2018-05-15 01:45:02    阅读次数:135
Java中的关键字 transient
在讨论transient之前,有必要先搞清楚Java中序列化的含义; Java中对象的序列化指的是将对象转换成以字节序列的形式来表示,这些字节序列包含了对象的数据和信息,一个序列化后的对象可以被写到数据库或文件中,也可用于网络传输,一般当我们使用缓存cache(内存空间不够有可能会本地存储到硬盘)或 ...
分类:编程语言   时间:2018-05-07 13:48:33    阅读次数:202
mybatis 详解------动态SQL
mybatis 详解 动态SQL 目录 1、动态SQL:if 语句 2、动态SQL:if+where 语句 3、动态SQL:if+set 语句 4、动态SQL:choose(when,otherwise) 语句 5、动态SQL:trim 语句 6、动态SQL: SQL 片段 7、动态SQL: for ...
分类:数据库   时间:2018-05-06 18:04:28    阅读次数:212
526条   上一页 1 ... 17 18 19 20 21 ... 53 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!