码迷,mamicode.com
首页 >  
搜索关键字:idplresultset result    ( 10204个结果
获取Excel文本
private string GetCellText(int row, int col, ExcelWorksheet oSheet) { string result = ""; bool isFound = false; int rowEnd = 1; int colEnd = 1; ExcelR ...
分类:其他好文   时间:2020-09-17 12:13:37    阅读次数:30
Hyperf AMQP -- 简单实例
# producer php bin/hyperf.php gen:amqp-producer DemoProducer # consumer php bin/hyperf.php gen:amqp-consumer DemoConsumer # 使用 command 盗用 DemoProducer ...
分类:其他好文   时间:2020-09-16 12:43:45    阅读次数:131
ThreadPollExecutor中execute和submite的区别
1:入参不同 excute() 传入的是 Runable, submit 传入的是 Callable 或 Runable 1):execute 方法源码 public void execute(Runnable command) { ... } 2):submit方法源码 public Future ...
分类:其他好文   时间:2020-09-16 12:14:48    阅读次数:35
PAT A1056 Mice and Rice (25分)
#include<cstdio> #include<queue> #include<vector> using namespace std; const int N = 1010; queue<int> q; int w[N]; int result[N]; int main(){ int np,n ...
分类:其他好文   时间:2020-09-12 21:48:03    阅读次数:38
初级算法
```js // log /** * 找到第一个字母,若没有满足要求的返回null * @param {string} str */ function getFirstCharThatAppearsOnce(str) { let result let len = str.length let bla... ...
分类:编程语言   时间:2020-09-12 21:11:02    阅读次数:39
instanceof关键字
instanceof严格来说是Java中的一个双目运算符,用来测试一个对象是否为一个类的实例,用法为: boolean result = obj instanceof Class 其中 obj 为一个对象,Class 表示一个类或者一个接口,当 obj 为 Class 的对象,或者是其直接或间接子类 ...
分类:其他好文   时间:2020-09-11 14:13:32    阅读次数:33
每日一道 LeetCode (32): 验证回文串
每天 3 分钟,走上算法的逆袭之路。 前文合集 每日一道 LeetCode 前文合集 代码仓库 GitHub: https://github.com/meteor1993/LeetCode Gitee: https://gitee.com/inwsy/LeetCode 题目:验证回文串 题目来源:h ...
分类:其他好文   时间:2020-09-10 23:07:21    阅读次数:43
整合springboot+mybatis+mysql之增删改查(三)
废话少说,上代码 结构: 1application.properties web.upload-path=G:\study_tool\maven_workspace\images#\u9759\u6001\u8D44\u6E90\u6587\u4EF6spring.resources.static- ...
分类:数据库   时间:2020-09-08 21:05:22    阅读次数:66
使用纯粹的ABAP位操作实现两个整数相加
Recently I came across this very funny picture and I would like to share with you. This picture shows totally five different approaches to implement “ ...
分类:其他好文   时间:2020-09-08 20:39:18    阅读次数:51
获取某个文件夹下的所有代码总行数
1 #获取某个文件夹下的所有代码总行数 2 import os 3 def GetAllPath(dirname): 4 result = [] 5 for maindir, subdir, file_name_list in os.walk(dirname): 6 for filename in ...
分类:其他好文   时间:2020-09-07 18:42:30    阅读次数:44
10204条   上一页 1 ... 22 23 24 25 26 ... 1021 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!