码迷,mamicode.com
首页 >  
搜索关键字:2011. long statement    ( 22237个结果
execute,executeQuery,executeUpdate的区别是什么?
一. Statement 接口提供了三种执行 SQL 语句的方法:executeQuery、executeUpdate 和 execute。使用哪一个方法由 SQL 语句所产生的内容决定。 1)方法executeQuery 用于产生单个结果集的语句,例如 SELECT 语句。 被使用最多的执行 SQ ...
分类:其他好文   时间:2021-01-05 11:34:12    阅读次数:0
数据类型
关键字 描述 大小/格式 整型 boolean 布尔 1位 byte 字节长度整型 8位 Short 短整型 16位 int 整型 32位 long 长整型 64位 实数 Float 单精度浮点型 32位 Double 双精度浮点型 64位 其它类型 Char 单个字符 16位(it is alle ...
分类:其他好文   时间:2021-01-05 11:08:47    阅读次数:0
题解 SP6286 【SUMMUL - Sum of products】
这题首先我们可以推出递推式: 我们先把加数个数大于等于 \(2\) 的限制去掉,最后再减回去即可。 \[ f_0=1 \] \[ f_n=\sum\limits_{i=1}^{n} j \cdot f_{i-j} \] 暴力代码: #include<bits/stdc++.h> using name ...
分类:其他好文   时间:2021-01-05 10:41:20    阅读次数:0
CF553E Kyoya and Train
CF553E Kyoya and Train 还是那句话,我觉得分治FFT是有实现难度的 初学,dalao别D 看完题第一反应应该是设 \(dp(i,j)\) 表示时刻 \(j\) 到达点 \(i\) 的最小代价。 发现完全不会处理边界,想了一会就舍掉了。 设 \(dp(i,j)\) 表示时刻 \( ...
分类:其他好文   时间:2021-01-04 10:32:05    阅读次数:0
缩点+拓扑模板
#include<iostream> #include<cstdio> #include<cstdlib> #include<cstring> #include<algorithm> #include<stack> #include<queue> #define ll long long using ...
分类:其他好文   时间:2021-01-04 10:30:49    阅读次数:0
3. java的数据类型
数据类型 java是强类型语言。意味着变量都必须先定义后才能使用。 强类型语言提升了安全性,但降低了运行速度。 基本类型 int byte short long float double char boolean String public class data_type_practice { pu ...
分类:编程语言   时间:2021-01-02 11:12:06    阅读次数:0
rust FnMut 闭包
fn consume_with_relish<F>(mut func: F) where F: FnMut() -> String { // `func` consumes its captured variables, so it cannot be run more // than once p ...
分类:其他好文   时间:2021-01-02 11:07:10    阅读次数:0
哈希.字符串哈希.AcWing.841
code: #include<bits/stdc++.h>//xfl using namespace std; const int N = 100007; typedef unsigned long long ull; ull mis[N],sum[N]; string s; int n,m,l1, ...
分类:Windows程序   时间:2021-01-01 11:54:31    阅读次数:0
java常用类:System
System System系统类,主要用于获取系统的属性数据和其他操作,构造方法私有的,所以无法创建该类的对象 其内部的成员变量和成员方法都是static的,所以也可以很方便的进行调用 方法名 说明 static void arraycopy(...) 复制数组 static long curren ...
分类:编程语言   时间:2020-12-31 12:53:11    阅读次数:0
选择结构
? ##3、选择结构 1.基本数据类型(byte,short,int,long,float,double,char,boolean)表比较用 ? 关系运算符(>,>=,<,<=,==,!=). 引用数据类型表比较用equals(),语法:引用类型变量1.equals(引用类型变量2); eg:pub ...
分类:其他好文   时间:2020-12-30 11:36:07    阅读次数:0
22237条   上一页 1 ... 30 31 32 33 34 ... 2224 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!