案例四:封装共有操作 封装一个数据库的会话的类 点击查看详细代码 import java.sql.*; public class ConnectionUtil { /** * 获取连接对象的方法,返回一个Connection * 方法体中是共有操作:加载驱动,建立连接 */ public stati ...
分类:
数据库 时间:
2021-06-17 17:10:30
阅读次数:
0
因为手残 不小心打成了 ninja -C out\Default chrome.exe 立马火速取消 ctrl + C 然后! 再来一次准备ninja -C out\Default chrome 就完犊子了啊 参考这篇:https://www.jianshu.com/p/1b96772fce51 先 ...
分类:
其他好文 时间:
2021-06-17 17:08:14
阅读次数:
0
盛最多水的容器 题目描述:给你 n 个非负整数 a1,a2,...,an,每个数代表坐标中的一个点 (i, ai) 。在坐标内画 n 条垂直线,垂直线 i 的两个端点分别为 (i, ai) 和 (i, 0) 。找出其中的两条线,使得它们与 x 轴共同构成的容器可以容纳最多的水。 说明:你不能倾斜容器 ...
分类:
其他好文 时间:
2021-06-17 16:39:38
阅读次数:
0
在配置文件下新建格式如下: route -n ...
分类:
其他好文 时间:
2021-06-16 18:09:59
阅读次数:
0
Hello wrold 1,随便新建一个文件夹存放代码 2,新建一个Java文件 文件后缀名为.Java Hello.java 注意点 系统可能没有显示文件的后缀名,需要手动打开 编写代码 public class Hello{ public static void main(String[] ar ...
分类:
编程语言 时间:
2021-06-16 17:57:15
阅读次数:
0
HelloWorld 新建一个文本文档后缀名改为 .java 编写代码 public class Hello{ public static void main(String[] args){ System.out.print("Hello,World!"); } } 编译 javac Hello.j ...
分类:
其他好文 时间:
2021-06-16 17:30:23
阅读次数:
0
public class DoublePointer { public static int[] a = new int[]{1, 3, 4, 9}; public static int[] b = new int[]{0, 3, 4, 4}; public static void main(Str ...
分类:
编程语言 时间:
2021-06-15 18:46:19
阅读次数:
0
You are given two strings s and p where p is a subsequence of s. You are also given a distinct 0-indexed integer array removable containing a subset o ...
分类:
其他好文 时间:
2021-06-15 18:05:39
阅读次数:
0
#include <iostream> #include <cstdlib> using namespace std; int func1(),func2(),func3(); int main(int argc,char * argv[]) { _onexit(func2); //函数注册时入栈, ...
分类:
编程语言 时间:
2021-06-15 18:03:29
阅读次数:
0
open SYSCALL_DEFINE3(open, const char __user *, filename, int, flags, umode_t, mode) { ...... return do_sys_open(AT_FDCWD, filename, flags, mode); } l ...
分类:
其他好文 时间:
2021-06-15 17:45:08
阅读次数:
0