• 博客园logo
  • 会员
  • 众包
  • 新闻
  • 博问
  • 闪存
  • 赞助商
  • HarmonyOS
  • Chat2DB
    • 搜索
      所有博客
    • 搜索
      当前博客
  • 写随笔 我的博客 短消息 简洁模式
    用户头像
    我的博客 我的园子 账号设置 会员中心 简洁模式 ... 退出登录
    注册 登录
 






爱胖的男孩

 
 

Powered by 博客园
博客园 | 首页 | 新随笔 | 联系 | 订阅 订阅 | 管理
上一页 1 2

2019年9月18日

一道面试题:说说进程和线程的区别
摘要: https://www.cnblogs.com/zhehan54/p/6130030.html 在理解进程和线程概念之前首选要对并发有一定的感性认识,如果服务器同一时间内只能服务于一个客户端,其他客户端都再那里傻等的话,可见其性能的低下估计会被客户骂出翔来,因此并发编程应运而生,并发是网络编程中必须 阅读全文
posted @ 2019-09-18 21:36 爱胖的男孩 阅读(1530) 评论(0) 推荐(0)
 
HashTable实现原理
摘要: https://blog.csdn.net/varyall/article/details/80992123 阅读全文
posted @ 2019-09-18 21:33 爱胖的男孩 阅读(142) 评论(0) 推荐(0)
 
HashMap、Hashtable、HashSet三种hash集合的区别
摘要: https://www.cnblogs.com/lzrabbit/p/3721067.html#h1 阅读全文
posted @ 2019-09-18 21:27 爱胖的男孩 阅读(161) 评论(0) 推荐(0)
 

2019年7月31日

Eclipse快捷键大全
摘要: Eclipse快捷键大全 Ctrl + 1 快速修复 Ctrl + D 删除当前行 Ctrl + Alt + ↓ 复制当前行到下一行(复制增加) Ctrl + Alt + ↑ 复制当前行到上一行(复制增加) Alt + ↓ 当前行和下面一行交互位置 Alt + ↑ 当前行和上面一行交互位置(同上) Alt + ← 前一个编辑的页面 Alt + → 下一个编辑的页面(当然是针对上面那条来说了... 阅读全文
posted @ 2019-07-31 15:11 爱胖的男孩 阅读(207) 评论(0) 推荐(0)
 
Statement、 PreparedStatement 、CallableStatement 区别和联系
摘要: Statement、 PreparedStatement 、CallableStatement 区别和联系 1. Statement、PreparedStatement和CallableStatement都是接口(interface)。 2. Statement继承自Wrapper、PreparedStatement继承自Statement、CallableStatement继承自Prepar... 阅读全文
posted @ 2019-07-31 15:09 爱胖的男孩 阅读(757) 评论(0) 推荐(0)
 
MYSQL调用存储过程
摘要: //MYSQL调用存储过程 delimiter $$ //改写事务的提交过程 create procedure getStu(in n VARCHAR(50)) //procedure新存储过程 begin select * from student where name = n; end... 阅读全文
posted @ 2019-07-31 15:07 爱胖的男孩 阅读(424) 评论(0) 推荐(0)
 
JDBC调用存储过程
摘要: package com.yunlei.jdbc.dao.test; /** * JDBC调用存储过程 */ import java.sql.CallableStatement; import java.sql.Connection; import java.sql.ResultSet; import java.sql.SQLException; import java.sql.Types; ... 阅读全文
posted @ 2019-07-31 15:06 爱胖的男孩 阅读(267) 评论(0) 推荐(0)
 
数据库-SQL语句&mysql单表
摘要: 1.DDL:操作数据库中的对象,数据库,表,列 ***创建数据库 create database 数据库名;# 已默认编码创建数据库 create database 数据库名 charset 编码名; ***创建表 create table 表名( 字段1 数据类型(长度)[约束], ... 阅读全文
posted @ 2019-07-31 14:41 爱胖的男孩 阅读(229) 评论(0) 推荐(0)
 
jdbc连接MySQL报以下错误处理方案
摘要: 连接MySQL数据库时报以下更改驱动包位置 Loading class `com.mysql.jdbc.Driver'. This is deprecated. The new driver class is `com.mysql.cj.jdbc.Driver'. The driver is automatically registered via the SPI and manual lo... 阅读全文
posted @ 2019-07-31 14:36 爱胖的男孩 阅读(7932) 评论(1) 推荐(0)
 
多表查询有三种
摘要: 多表查询有三种: 1.交叉查询 语法: select * from 表1,表2; 2.内链接查询: inner join 隐式内链接查询:不写关键字 inner join select * from 主表,从表 on 主键.主键 = 从表.外键 显示内链接查询:写关键字 inner join select * from 主表 inner join从表 on 主键.主键 = 从表.外键 3.外链... 阅读全文
posted @ 2019-07-31 14:35 爱胖的男孩 阅读(1712) 评论(0) 推荐(0)
 
上一页 1 2