码迷,mamicode.com
首页 >  
搜索关键字:lex    ( 2392个结果
lexin_ic
首先解读题意:A中从高位往低位看,第一个出现一的位置等于B的数值。 ...
分类:其他好文   时间:2020-06-14 15:05:01    阅读次数:45
线程池创建
package net.icarefx.booking.util.threadpool; import java.util.concurrent.ArrayBlockingQueue;import java.util.concurrent.Callable;import java.util.conc ...
分类:编程语言   时间:2020-06-14 00:53:45    阅读次数:90
.net源码分析 – List<T>【转】
通过分析源码可以更好理解List<T>的工作方式,帮助我们写出更稳定的代码。 List<T>源码地址: https://github.com/dotnet/corefx/blob/master/src/System.Collections/src/System/Collections/Generic ...
分类:Web程序   时间:2020-06-13 23:22:08    阅读次数:99
基本的mysql语句
本节课先对mysql的基本语法初体验。 操作文件夹(库) 增 create database db1 charset utf8; 查 # 查看当前创建的数据库 show create database db1; # 查看所有的数据库 show databases; 改 alter database ...
分类:数据库   时间:2020-06-13 23:03:30    阅读次数:93
ORA-28040: No matching authentication protocol
【故障处理】ORA-28040: No matching authentication protocol 1> 告警日志中频繁出现Using deprecated SQLNET.ALLOWED_LOGON_VERSION parameter、 ORA-28040: No matching authe ...
分类:其他好文   时间:2020-06-13 10:30:44    阅读次数:49
559. Maximum Depth of N-ary Tree
package LeetCode_559 import java.util.* /** * 559. Maximum Depth of N-ary Tree * https://leetcode.com/problems/maximum-depth-of-n-ary-tree/description ...
分类:其他好文   时间:2020-06-12 14:27:25    阅读次数:74
浅谈Node中的模块化
javascript模块化编程,已经成为一个迫切且不可少的需求。 ...
分类:其他好文   时间:2020-06-11 16:52:18    阅读次数:41
java dbhelper
import javax.naming.spi.DirStateFactory; import java.lang.reflect.Field; import java.sql.*; import java.util.ArrayList; import java.util.List; public ...
分类:数据库   时间:2020-06-11 16:49:33    阅读次数:57
我的mixin.scss文件
@mixin text-ellipsis() { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; } @mixin text-ellipsis-multi($line) { display: -webkit-box; o ...
分类:Web程序   时间:2020-06-11 16:34:45    阅读次数:77
html+css-----实现圣杯布局
1.浮动实现圣杯布局 html代码: <div class="demo"> <div class="center same"> <div class="inner">center</div> </div> <div class="left same">left</div> <div class="r ...
分类:Web程序   时间:2020-06-09 20:30:07    阅读次数:87
2392条   上一页 1 ... 10 11 12 13 14 ... 240 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!